常用DDL語句

2021-07-29 12:46:36 字數 889 閱讀 9261

1、修改欄位名稱

alter table t_user_login_log change device_id session_id varchar(256);
2、修改注釋

alter table t_user_login_log modify column session_id varchar(256) comment '上次登入的sessionid';
3、建立唯一索引

alter table `t_album_music` add unique albummusicids ( `music_id`, `album_id`);
4、刪除索引

alter table t_sys_msg_log drop index logids,drop index idx_user_id;
4、新增字段

alter table t_dim_health_column add flag tinyint(1) default null comment "是否顯示到首頁 1 是 0 否";
6、刪除字段

alter table t_dim_health_column drop column flag,drop colum name ;
7、有時從excel複製的字段內容,進入mysql會帶上換行符

update loan_document_dir set  `directory_full_name` = replace(replace(`directory_full_name`, char(10), ''), char(13), '');

MySQL常用DDL語句

刪除表 如果存在則刪除 drop table if exists t user 建立表 建立表 create table t user id bigint 20 unsigned not null auto increment,user code varchar 20 not null commen...

greeplum中常用的DDL語句

工作中總會遇到需要修改表結構的場景,對於有些表結構屬性可以直接使用語句進行修改。修改表名 alter table rename 修改資料型別 alter table alter column type 修改中文名 comment on column is 中文注釋 修改欄位名 alter table...

DDL語句總結

ddl 資料庫定義語言 由create,alter,truncate,drop 組成。1.create 建立表 create table 表名 屬性名 屬性型別 約束條件 2.alter 修改表結構 1.新增新的列 alter table 表名 add 列名 型別 default 2.改變列的順序 ...