alter用法
新增乙個表的列
alter table 表名 add 列名 datatype
刪除乙個表的列
alter table 表名 drop column 列名
修改列的資料型別
alter table 表名 alter column 列名 datatype
auto_increment
create table (p_id int not null primary key auto_increment,firstname....)
主鍵是從100開始
alter table 表名 auto_crement=100
now():返回當前的時間與日期
curdate():返回當前的日期
curtime():返回當前的時間
date_add():給日期新增指定的間隔
date_sub():給日期減少指定的間隔
datediff():返回兩個日期之間的天數
ifnull用法
select ifnull(v3_cloud_test.member_account.brand_id,0) as brand_id,member_id from v3_cloud_test.member_account
資料庫語句
1.case,when,else小例子 selecte as x case when then good else bad as from table 比如 select case when highercode 1 then 省會 else 不知道 end as detail code as 地區...
資料庫語句
資料庫語句 ddl語句 data definition language 即資料庫定義語言 ddl語句包含create alter drop等常用語句 資料庫操作 檢視資料庫 show databases 2.建立資料庫 create database 資料庫名 例項名 3.切換 選擇資料庫 use...
資料庫語句,建立資料庫
首先連線sql後,ctrl n 新建查詢視窗 例如 圖書 書號,書名,出版社 讀者 卡號,姓名,年齡,所屬單位 借閱 書號,卡號,借閱日期 注意 要先建立乙個資料夾,d testdb create database shu onprimary name shu data 主資料檔案的邏輯名 file...