select * from chengyuan where sid=2 limit 0,3 ;
??? 在mysql 中分页使用如上的方式。
?limit 0,3 表示 从地 0+1 条开始 取3条记录
?
而在sqlserver中使用top n 的方式。