SQL表的簡單操作
阿新 • • 發佈:2018-11-04
style student 幫助 選擇 圖片 char 數據庫表 數據 all
創建數據庫表,進行增刪改查是我們操作數據庫的最基礎的操作,很簡單,熟悉的請關閉,免得讓費時間。
1、創建表:
sql中創建數值類型字段要根據該字段值的增長情況選擇類型:
tinyint 占1個字節,長度為 0-255
smallint 占2個字節,長度為 2^15 (-32,768) 到 2^15-1 (32,767)
int 占4個字節,長度為 -2^31 (-2,147,483,648) 到 2^31-1 (2,147,483,647)
bigint 占8個字節,長度為 -2^63 (-9,223,372,036,854,775,808) 到 2^63-1 (9,223,372,036,854,775,807)
Create Table Student( Id tinyint primary key identity(1,1), Name nvarchar(20), Age int )
2、用SQL為表添加一列
Alter table Student add Class nvarchar(20) go
3、修改SQL現有列的類型,比如從nvarchar改成varchar
Alter table Student Alter column Name char(20) go
4、用sql語句刪除一列
Alter table student Drop columnclass go
5、SQL Insert
Insert into Student(Name,Age) values(‘張三‘,18) Insert into Student(Name,Age) values(‘李四‘,17) Insert into Student(Name,Age) values(‘王五‘,17)
6、Sql 更新一條數據
Update Student set Age=19 where Id=1
7、刪除一條數據
8、清空數據表:
truncate table Student
9、刪除數據表
drop table Student
這些都是最基礎最基礎的操作,一個表的創建,增刪改查,清空,刪除數據,刪除表。
希望對看到你有些幫助。
歡迎拍磚!
SQL表的簡單操作