Bài viết được đăng tại nguyenlediep.com - không copy dưới mọi hình thức.
NLD Code - Những câu lệnh thao tác cơ bản trên cơ sở dữ liệu SQL phần 2. Create table, drop table, alter table, drop column, not null, primary key, foreign key, exec sp_help.
Những câu lệnh thao tác cơ bản trên cơ sở dữ liệu SQL phần 2. Create table, drop table, alter table, drop column, not null, primary key, foreign key, exec sp_help.
Tạo bảng với các cột (create table):
create table TaiSan(MaTS int,TenTS nchar(50))
Tạo bảng với các ràng buộc (create table):
create table TaiSan(MaTS int primary key,TenTS nvarchar(50) not null,MaHang int references Hang(MaHang))
Xóa bảng (drop table):
drop table TaiSan
Thêm cột vào bảng (alter table add):
alter table TaiSan MaHang int
Xóa cột của bảng (alter table drop column):
alter table TaiSan drop column MaHang
Thêm thuộc tính not null cho cột:
alter table TaiSan column TenTS nchar(50) not null
Thêm khóa chính (primary key):
alter table TaiSan add primary key (MaTS)
Thêm ràng buộc khóa ngoại (foreign key):
alter table TaiSan add foreign key (MaHang) references Hang(MaHang)
Xem thông tin bảng (exec sp_help):
exec sp_help TaiSan