sql update如何将一个字段更新更序列
发布网友
发布时间:2022-04-11 06:57
我来回答
共4个回答
热心网友
时间:2022-04-11 08:27
这个很简单:
如果用ASP的话是这样:
首先:
<%
''连接数据库,并打开数据库Conn.open(略..)
for i=1 to 120
Conn.execute("UPDATE TABLE SET 字段A="&i&" where xx=xx")
next
Conn.Close:set Conn = Nothing
%>
热心网友
时间:2022-04-11 09:45
update 表名 set 字段名=rownum 用于oracle数据库
热心网友
时间:2022-04-11 11:19
select *
from 表
where order by 字段 asc
参考资料:如果您的回答是从其他地方引用,请表明出处
热心网友
时间:2022-04-11 13:11
你的意思表达的有点模糊,如果你是想要排序的话就用:
Use 数据库名 from 表名 order by 列名 [asc]
应该就可以了,不用加where加上where就错误了哦