• 2022-05-30
    在SQL中查询数据,要从第4条开始查询,查询3条记录的语句是()。
    A: select * from 表名
    B: select * from 表名  where 位置=4 and 个数=3
    C: select * from 表名 where 4,3
    D: select * from 表名  limit 4,3
  • 举一反三