1.重新定義表中某個欄位的屬性
alter table user modify column name varchar(200) comment '姓名';
2.給表新增列欄位
alter table user add column *** varchar(200) comment '性別';
3.刪除表中的乙個列欄位
alter table user drop column name;
4.刪除某一張表,建議使用如下方式進行刪除,這樣可以避免由於該錶不存在但我們直接進行刪除操作而引起報錯,導致後面的sql指令碼無法執行
drop table if exists `user`;
5.建立表時給表新增備註
drop table if exists `user`;
create table `user` (
`id` int(11) not null auto_increment comment '主鍵id',
`name` varchar(32) not null comment '姓名',
`***` varchar(32) not null comment '性別',
primary key (`id`)
) comment = '使用者表';
SQL 常用指令碼
select o.name as tablename,c.name as colname,k.keyno as sort from sysindexes i join sysindexkeys k on i.id k.id and i.indid k.indid join sysobjects o ...
常用SQL查詢指令碼
本文假定讀者已經對資料庫連線技術有所了解,因此只討論有關sql查詢命令的語法。表結構如下 ms access 2000 表名 usertable 欄位名 字段型別 userid 自動計數 長整型 username 文字 user 文字 createdate 日期 時間 預設值為now 一 用sele...
常用 SQL指令碼 收集
declare ttable 成績 int,學生 varchar 10 insert tselect 100,小張 union select 70 小力 union select 80 小剛 union select 78 小王 select pid select count 1 from twhe...