程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 胡啟sqls erver第二章學習總結

胡啟sqls erver第二章學習總結

編輯:關於JAVA

今天我就學到了在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;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved