W
winsock
Unregistered / Unconfirmed
GUEST, unregistred user!
我用下面的这条语句查询。。。为什么有错?
query1.Close;
query1.SQL.Clear;
if query1.SQL.Add('select * from animals where weight=80') then //这里出错
showmessage('找不到记录');
else
query1.sql.add('update from animals set weight=80 where area=boa');
.......
还有一点。要是要把表中一个字段(如:weight)的所有值都修改80,语句怎么写呢?
query1.Close;
query1.SQL.Clear;
if query1.SQL.Add('select * from animals where weight=80') then //这里出错
showmessage('找不到记录');
else
query1.sql.add('update from animals set weight=80 where area=boa');
.......
还有一点。要是要把表中一个字段(如:weight)的所有值都修改80,语句怎么写呢?