首页 > 学院 > 开发设计 > 正文

从表TABLE_NAME中提取前10条记录

2019-11-08 20:53:22
字体:
来源:转载
供稿:网友

从表TABLE_NAME中提取前10条记录

Sql server: select TOP N * from table_name.

MySQL: select *from table_name limit 0,10;

Oracle: select * from table_namewhere rownum<=10


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表