SQL Server之增刪改操作

来源:http://www.cnblogs.com/pang951189/archive/2017/10/05/7629993.html
-Advertisement-
Play Games

添加約束、增刪改 1 use StudentDB2 2 go 3 創建學生表 4 create table StudentInfo( 5 --studentId int primary key not null identity(1,1), 設置為主鍵,並自增長 6 studentId int no ...


-------添加約束、增刪改

 1 use StudentDB2
 2 go
 3 --------創建學生表---------
 4 create table StudentInfo(
 5 --studentId int primary key not null identity(1,1),---設置為主鍵,並自增長
 6 studentId int not null identity(1,1),
 7 studentNum varchar(16) not null,
 8 studentName nvarchar(16) not null,
 9 studentMobile int null,
10 classNo int null
11 )
12 --------添加約束----------
13 --主鍵約束
14 alter table StudentInfo
15     add constraint PK_StudentInfo_StudentId primary key (studentId)
16 go
17 --唯一約束
18 alter table StudentInfo
19     add constraint UQ_StudentInfo_studentNum unique (studentNum)
20 go
21 --預設約束
22 alter table StudentInfo
23     add constraint DF_StudentInfo_studentMobile default '號碼不詳' for studentMobile
24 go
25 --檢查約束
26 alter table studentInfo
27 --check (len(studentMobile)=11):檢查電話號碼的長度是否為11位
28 --check後的括弧中的表達式可以是and或者or連接的多個簡單邏輯表達式組成的複合型邏輯表達式
29     add constraint CK_StudentInfo_studentMobile check (len(studentMobile)=11)
30 go
31 --======為了避免重覆書寫的麻煩,可使用如下方式添加約束
32 alter table studentInfo
33 add constraint DF_StudentInfo_studentMobile default '號碼不詳' for studentMobile,
34     constraint CK_StudentInfo_studentMobile check (len(studentMobile)=11)
35 go
36 --刪除約束
37 alter table studentInfo
38     drop constraint DF_StudentInfo_studentMobile  --constraint關鍵字是可選的,可寫可不寫
39 go
40 ------------修改數據表-----------
41 --添加列
42 alter table StudentInfo
43 add remark1 varchar(20) null,
44     remark2 varchar(20) null
45 go
46 --刪除列
47 alter table StudentInfo
48 drop column ramark1
49 go
50 --------修改列
51 alter table classNo
52 --修改了數據類型、長度和可空性
53 alter column classId varchar(20) not null
54 go
55 --修改列名
56 exec sp_rename 'studentInfo.classNo','classNum'
57 go
58 --------------刪除數據表--------------------
59 --再刪除之前要先進行判斷數據表是否存在,否則會發生錯誤
60 --判斷方法1
61 if exists (select * from sys.sysobjects where [name]='studentinfo')
62 drop table StudentInfo
63 go
64 --判斷方法2
65 if OBJECT_ID('studentinfo') is not null
66 drop table studentinfo
67 go
View Code

-------外鍵約束

 1 Use StudentDB2
 2 go
 3 --創建表
 4 create table Score(
 5 studentId int not null identity(1,1),
 6 score int 
 7 )
 8 --添加外鍵約束
 9 alter table score
10     add constraint FK_score_studentinfo_stuId foreign key (studentId) references studentinfo(studentId)
11 go

--------插入、更新、刪除

Use StudentDB2
go
--全部列均插入數據,提供所有列的數據值,並按照表中各列的順序列出這些值,故不必指定列名
insert into StudentInfo values(
1,'000001','大壯',124565689,10086,'01','001'
);
go
--按照順序提供了所有的列,並且相應的給出了所有的值(推薦寫法)
insert into StudentInfo(studentId,studentNum,studentName,classNo,remark1,remark2)
values (1,'000001','大壯',124565689,10086,'01','001');
go 
--也可以不按照表中的順序來插入數據(但是提供了所有的列)
insert into StudentInfo(studentId,classNo,studentNum,remark1,studentName,remark2)
values(1,2,'000002','02','二狗','003');
go
--插入部分列值(插入值的個數小於列的個數),必須要聲明是哪一列
insert into StudentInfo(studentId,classNo,studentNum)
values(3,03,'000003');
go
---------------更新數據--------------
--簡單的update語句
update studentinfo set remark1=000;
go
--帶where條件的update語句
update studentinfo set studentnum=0101,studentname='王二麻子' where classno=222;
go
-----------刪除數據-------------
--刪除整個表格
delete from studentinfo;
go
--刪除某一行
delete from studentinfo where studentid=001;
go

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • CAReplicatorLayer CAReplicatorLayer的目的是為了高效生成許多相似的圖層。它會繪製一個或多個圖層的子圖層,併在每個複製體上應用不同的變換。看上去演示能夠更加解釋這些,我們來寫個例子吧。 重覆圖層(Repeating Layers) 清單6.8中,我們在屏幕的中間創建了 ...
  • 1.安裝JDK 下載: Oracle官網上下載jdk,需要點擊accept licence的才能下載,使用下麵的命令,直接可以下載。 wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-sec... ...
  • oracle約束狀態有幾個項目,會讓人迷惑,分別是: 所以,通過簡單的實驗,來確認它們之間的區別。 以下實驗在12.2.0.1中進行。 通過試驗可以獲得幾點: 在實際情況中,常常會遇到那麼一些人有一些習慣:不對欄位或者表做任何約束。 好處是:節約了表設計時間,減少了變更說需要耗費的時間。 壞處是:終 ...
  • 圖示全連接層 如上圖所示,該全鏈接層輸入n * 4,輸出為n * 2,n為batch 該層有兩個參數W和B,W為繫數,B為偏置項 該層的函數為F(x) = W*x + B,則W為4 * 2的矩陣,B 為 1 * 2 的矩陣 從公式理解全連接層 假設第N層為全連接層,輸入為Xn,輸出為Xn+1,其他與 ...
  • 用workbench導入csv數據,只能導入數據的第一行,也就是標註每一列的列名的那一行。但問題是,每次導入完成時,系統提示已經導入了500條記錄(這個文件中的確有500條記錄),可是刷新資料庫後打開這張表,裡面還是只有上面說的那一行。 鄙人還發現在導入設置【field separator】那一欄, ...
  • 設置PL/SQL語句快捷輸入的方法,讓你成為高效率的人。 1.打開PL/SQL,輸入用戶並登錄 2.並打開Tools->Preferences->Editor->AutoReplace->選上Enabled 3.打開Editor,輸入下麵設置語句: sf=select * from scf=sele ...
  • 0.目錄 1. "前言" 2. "通過SSMS修改數據" 3. "通過SQL語句修改數據" 3.1 "修改單列數據" 3.2 "修改多列數據" 1.前言 增刪改查都是對數據的操作,其中“改”對應的SQL語句便是“update”,也就是“更新”的意思。 本篇主要介紹數據的修改,分別使用SSMS/SQL ...
  • 本文參考鏈接:http://blog.csdn.net/jbboy/article/details/46828917 【本人認為改文章比較適合學習和參考,值得一看】 本文章來給大家提供三種在mysql中避免重覆插入記錄方法,主要是講到了ignore,Replace,ON DUPLICATE KEY ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...