今天我就學到了在sqlserver查詢分析器中創建一個數據庫,創建一個表,連接數據庫,刪除表,刪除數據庫,創建約束,創建約束。。。。。
--創建數據庫
create database huqi; use huqi; drop database huqi; create table wo(
name varchar(50),
phoneNo varchar(15) --若要使上句的name不為空,即加非空約束
create table wo(
name varchar(50) not null,
phoneNo varchar(15) --刪除數據庫
drop table wo; select * into wowo from wo; select * into wowo from wo where 1=0; insert into wo(name,phoneNo)values("huqi","028-73628394"); create table wo(
name varchar(50) not null,
phoneNo varchar(15) default "沒有電話號碼" --設置主鍵約束,MyPrimaryKey是主鍵約束名,若不想要主鍵約束名就不要constraint MyPrimaryKey。
create table wo(
name varchar(50),
phoneNo varchar(15),
constraint MyPrimaryKey primary key(name));
--設置自動編號,1000是種子值,1是增量值
create table wo(
woID int identity(1000,1) primary key not null,
name varchar(50) not null,
phoneNo varchar(15) default "沒有電話號碼");
--創建非唯一索引,加unique是唯一索引
create index NameIndex on wo(name);
create unique index NameIndex on wo(name); drop index wo.PhoneNoIndex; alter table wo add address varchar(50); alter table wo drop colunm phoneNo;