sql写法,F5运行
select top 10 * from Ecp_Chat_AllotService
oracle写法,F8运行
select * from Ecp_Chat_AllotService where rownum<=10
mysql写法 ,F9运行
SELECT * FROM USER LIMIT 0,10
后面补充自增设置,
sql 设置属性
oracle 系列
mysql 未知