本文介紹產品上線資料庫更新常用sql語句,包括新增修改字段設定型別、長度、預設值、備註等操作,後續會持續更新
alter
table test add
column create_by varchar(10
)not
null
default
'system'
comment
'建立者'
after
`id`
;
alter
table test modify create_date datetime not
null
default
now(
)comment
'更新日期'
;
alter
table test change user_id create_by varchar(10
)not
null
default
'system'
comment
'建立者'
;
alter
table test drop
column user_id;
delete t2 from test t1,test t2 where t1.aaa=t2.aaa and t1.bbb=t2.bbb and t1.ccc = t2.ccc and t1.iddistinct t2.
*from test t1
inner
join test t2 on t1.aaa=t2.aaa and t1.bbb=t2.bbb and t1.ccc = t2.ccc
where t1.idexists pre;
delimiter $$
create procedure pre()
begin
declare i int;
set i=1;
while i<
101do
insert into sys_user
(username,password)
value
(concat
('admin'
,i),
'$2a$10$yrje.gjnsdbndw4j3xtereqnvaajjr.gtonta7yf/ebelikgkzete');
set i=i+1;
end while
;end
$$call pre()
;
Mysql 新增字段 修改字段 刪除字段
alter table 表名 add 欄位名 字段型別 字段長度 default 預設值 comment 注釋 例如 alter table order add code char 6 default null comment 優惠碼 2 修改字段 修改欄位名 字段型別 長度 a 修改欄位名 alt...
Mysql 新增字段 修改字段 刪除字段
alter table 表名 add column 欄位名 字段型別 字段長度 default 預設值 comment 注釋 例如 alter table order add column code char 6 default null comment 優惠碼 2 修改字段 修改欄位名 字段型別 ...
MySQL新增字段,修改字段,刪除字段,修改表資訊
mysql的簡單語法,常用,卻不容易記住。當然,這些sql語法在各資料庫中基本通用。下面列出 一 查詢資訊 1.登入資料庫 mysql u root p 資料庫名稱 2.查詢所有資料表 show tables 3.查詢表的字段資訊 desc 表名稱 二 修改表資訊 1.修改表名 2.修改表注釋 三 ...