zoukankan
html css js c++ java
SQL查询表的第一条数据和最后一条数据
方法一: 使用TOP
SELECT
TOP 1 *
FROM
user;
SELECT
TOP 1 *
FROM
user
order
by id
desc;
方法二: 使用LIMIT
SELECT *
FROM
user LIMIT 1;
SELECT *
FROM
user
ORDER
BY id
ASC LIMIT 1;
SELECT *
FROM
user
ORDER
BY id
DESC LIMIT 1;
转载至:
https://www.cnblogs.com/weimingxin/p/7929584.html
查看全文
相关阅读:
leetcode46 Permutations
leetcode75 Sort Colors
leetcode347 Top K Frequent Elements
目录文件的浏览、管理及维护(二).作业
目录文件的浏览、管理及维护(一).作业
Linux系统基础.作业
补码原码反码
第一次测试感想
总结八
假期总结七
原文地址:https://www.cnblogs.com/max-hou/p/10990531.html
最新文章
level 3
level 2
level 1
CTFHUB-SQL注入-2
CTFHUB-web-基础认证
pandas读取MySql/SqlServer数据
python 正则
bilibili python 自动化
在导入Pandas包时,会报如下错误
pandas:DataFrname
热门文章
openpyxl应用
python 参 数
首字母大写
leetcode29 Divide Two Integers
leetcode26 Remove Duplicates from Sorted Array
leetcode28 Implement strStr()
leetcode11 Container With Most Water
leetcode15 3Sum
leetcode7 Reverse Integer
leetcode3 Longest Substring Without Repeating Characters
Copyright © 2011-2022 走看看