跳到主要内容

基础语法

交换两列数据

信息
   update   tableA as a ,tableA as b 
set a.columnA=b.columnB,a.columnB=b.columnA
where b.id=a.id and b.columnOther=?

offset用法

信息

SQL查询语句中的 limit 与 offset 的区别:

limit y 分句表示: 读取 y 条数据 limit x, y 分句表示: 跳过 x 条数据,读取 y 条数据 limit y offset x 分句表示: 跳过 x 条数据,读取 y 条数据