MYSQL入門總結

創建數據庫及創建表 create schema/database ttest(名字); //創建數據庫 create table ttest(建好的數據庫名字).new_table(表名字) ( a int not null, b varchar(20) null, c char (30) null, primary key (a)); //這個主鍵要用括號括起來 1.show columns f
相關文章
相關標籤/搜索