sql删除语句(1.在Transact-SQL中删除记录使用_________语句)
2022-08-27 11:36:28
摘要: sql删除语句(1.在Transact-SQL中删除记录使用_________语句)...
1、1、delete from 表名 where 条件2、update 表名 set 字段名=新值3、insert into 表名(字段列表)values(值列表)。