SQL删除语句怎么写 要多行删除
发布网友
发布时间:2022-04-19 19:46
我来回答
共2个回答
热心网友
时间:2022-04-10 04:19
delete
from
table1
where
col1
=
"值"
table1是你的数据库表名
col1是你想在哪列上测试条件,
值就是你测试条件与这个符合要求时删除
如果要删除整张表,直接用
delete
from
table1
热心网友
时间:2022-04-10 05:37
如果是oracle的话:
比如删除第100条到200之间的记录:
delete
from
表名
where
rownum
>
99
and
rownum
<
201
sqlserver的话:
delete
from
表名
where
top
>
99
and
top<
201