1樓:
--1,先查詢記錄,防止誤刪
select * from a表 t
where t.bb='123456'
--2,發現時你要刪除的資料後,執行刪除操作delete from a表 t
where t.bb<>'123456'
2樓:匿名使用者
有兩種寫法
一種:delete from a where bb<>123456二種:delete from a where bb!=123456兩種方法就是不等號不同而已
3樓:匿名使用者
dele from a where bb!='123456'
絕對正常!
4樓:
delete
from a
where a.id not in (select b.id from a b where b.bb='123456')
5樓:
delete from a表
where a表.bb<>'123456'
6樓:匿名使用者
delete a
where bb not in (select bb from a where bb='123456')
sql語句如何刪除列,SQL語句如何刪除列?
小丁創業 方法和詳細的操作步驟如下 1 第一步,開啟資料庫管理平臺軟體 sql server management studio 見下圖,轉到下面的步驟。2 第二步,執行完上面的操作之後,驗證身份並連線到資料庫 見下圖,轉到下面的步驟。3 第三步,執行完上面的操作之後,右鍵單擊 student 修改...
SQL語句,按資料多少排序,sql 按欄位指定值排序
select a.from tablea a select tableaid,count 1 nb from tableb b group by tableaid bb where a.id bb.tableaidorder by bb.nb 首先需要把b表的兒子輩出現次數統計出來,並按照最大出現次...
sql查詢部分欄位重複的記錄,sql查詢兩個欄位相同的記錄
加上日期限制 access select distinct setname setnum from table name where subtime between date and dateadd m 1,date sql server select distinct setname setnum...