发布网友 发布时间:2022-04-23 14:17
共6个回答
热心网友 时间:2022-04-08 22:43
/*---为表新增一个列
ALTER TABLE S
ADD CLASS_NO CHAR(6)
---*/
/*--更改列的属性,更改数据类型
ALTER TABLE a
ALTER Column username NVARCHAR(30)
*/
/*--删除一列
ALTER TABLE a
DROP COLUMN username
*/
/* 更改列名
EXEC sp_rename '表名.列名','新列名','column'
*/
/**改表名
exec sp_rename 'test2', 'test3','OBJECT'
**/
/*删除表
drop tablename
*/
热心网友 时间:2022-04-09 00:01
删除行
delete from table
where condition;
例如
delete from employeess
where emp_id=40;
删除employees表里面 emp_id为40的行
删除列
ALTER TABLE table
DROP COLUMN column;
例如
ALTER TABLE dept
DROP COLUNM job_id;
删除表dept中的job_id列
删除表
DROP TABLE table;
例如
DROP TABLE dept;
删除表dept
热心网友 时间:2022-04-09 01:35
行: delete from <tableName> where <condition>
列: update <tableName> set <coulmn>=NULL
表: drop table <tableName>
热心网友 时间:2022-04-09 03:27
行: delete from <tableName> where <condition>
列: alter table <tableName> drop <columname>
表: drop <tableName>
热心网友 时间:2022-04-09 05:35
行: delete from 表 where 条件
列: alter table 表 drop 条件
表: drop 表
热心网友 时间:2022-04-09 07:59
truncate table 表名
切记当你使用这行代码删除东西时 你就可以跑路了