当前位置: 首页 > 网络学院 > 服务端脚本教程 > SQL > SQL FIRST 函数
The FIRST function returns the value of the first record in the specified field.
使用FIERST函数可以将指定区域内的第一条记录值返回出来。
Tip: Use the ORDER BY clause to order the records!
提示:可以使用ORDER BY 子句来排列记录!
SELECT FIRST(column) AS [expression] |
举例
SELECT FIRST(Age) AS lowest_age |
结果:
19 |