資料庫中表格管理
阿新 • • 發佈:2018-12-11
1、建立表
create table xxx (id int primary key not null auto_increment,name varchar(20));
紅色為欄位屬性
2、查看錶格屬性
dessc 表名;
3、查看錶格內容
select * from 表名;
4、檢視建立的表格語法格式
show create table 表名;
5、刪除表
drop table 表名
6、為表格增加欄位(加一個屬性)
alter table 表名 add birhday datetime;
其中birthday為表格的屬性,datetime為birthday的型別
7、將birthday更改為birth
alter table 表名 change birthday birth datetime;
8、將datetime 更改為date
alter table 表名 modify birth date;
9、刪除表格的某一屬性
alter table 表名 drop birth;
10、查看錶屬性以及建立表格
11、在空表格新增資訊
12、更改表格資訊
update students set gender=2 where id=3;
13、刪除表格資訊
delete from students where id=2;