08 2021 档案
摘要:组合两个表 表1: Person 列名 | 类型 PersonId FirstName LastName int varchar varchar PersonId 是上表主键 表2: Address 列名 | 类型 | AddressId PersonId City State int int va
阅读全文
摘要:①select * from tableA limit a,b; -- 跳过前a条数据,读取后b条数据; ②select * from tableA limit a; -- 读取前a条数据; ③select * from tableA limit a offset b; -- 跳过前b条数据,读取后
阅读全文