天赐神兵 2008-05-30 18:18
如果我要去11-20的Account表的数据
Select * From Account Limit 9 Offset 10;
以上语句表示从Account表获取数据,跳过10行,取9行
郑江涛 2006-06-27 13:44
update A set a.h4=b.h6 from b where a.h1=b.h1 and a.H5=k
k
表A 字段 H1 H4 H5
表B 字段 H1 H6
两个表H1是相同的.kk为A字段变量
修改A.H4=B.H6 条件 a.h1=b.h1 and a.H5=kk