不知道你想在这里完成什么。 这里我使用一个查询来查找要更新的id。update table set updated=now(),其中id在(从updated为null的表中选择id); 在这里,我创建了一个我运行的查询(命令因sql引擎而异,您必须用谷歌搜索自己的命令)set sql=select'selectfrom table where id='+select max(id)from table where updated is null;--将生成类似“selectfrom table where id=2”的select sql;--打印将运行exec(sql)的查询;--运行生成的查询
1条答案
按热度按时间bvhaajcl1#
不知道你想在这里完成什么。
这里我使用一个查询来查找要更新的id。update table set updated=now(),其中id在(从updated为null的表中选择id);
在这里,我创建了一个我运行的查询(命令因sql引擎而异,您必须用谷歌搜索自己的命令)set sql=select'selectfrom table where id='+select max(id)from table where updated is null;--将生成类似“selectfrom table where id=2”的select sql;--打印将运行exec(sql)的查询;--运行生成的查询