sql server相關學習sql語句

来源:https://www.cnblogs.com/kk-ss/archive/2023/03/28/17264836.html
-Advertisement-
Play Games

sql腳本 表結構設置 點擊查看代碼 if exists(select * from sys.objects where name='Department' and type='U') drop table Department create table Department ( --id iden ...


  • sql腳本 ---表結構設置
點擊查看代碼
if exists(select * from sys.objects where name='Department' and type='U')
	drop table Department
create table Department
(
	--id identity(x,y) 初始x 自增y,primary key 主鍵
	DepartmentId int primary key identity(1,1),
	--名稱
	DepartmentName nvarchar(50) not null,
	--描述
	DepartmentRemark text


)
--字元串
--char(x)  占用x個位元組 ‘ab’=>x個位元組
--varchar(x) 最多占用x個位元組  ‘ab’=>2個(x>2)
--text 長文本
--char text varchar 前面加n;存儲unicode 對中文友好
--例子
--varchar(100) 100個字母或者50個漢字
--nvarchar(100) 100個字母或者100個漢字

--Rank是關鍵字了,所以加上[]
create table [Rank]
(
	--id identity(x,y) 初始x 自增y,primary key 主鍵
	RankId int primary key identity(1,1),
	--名稱
	RankName nvarchar(50) not null,
	--描述
	RankRemark text


)

if exists(select * from sys.objects where name='People' and type='U')
	drop table People

create table People(
	--id identity(x,y) 初始x 自增y,primary key 主鍵
	PeopleId int primary key identity(1,1),
	--部門 references 引用外鍵 引用在部門表的id範圍之內
	DepartmentId int references Department(DepartmentId)not null ,
	--職員
	RankId int references [Rank](RankId)not null,
	--名稱
	PeopleName nvarchar(50) not null,
	--性別 加上約束(check) 預設
	PeopleSex nvarchar(1)default('男') check(PeopleSex='男' or PeopleSex='女')not null,
	--老版本date 新版本有time 加上samll就是表示現在時間 不能表示未來
	PeopleBirth smalldatetime not null,
	--小數的使用 float 可能有誤差 decimal(x,y) 長度x,小數y位
	PeopleSalary decimal(12,2) check(PeopleSalary>=1000 and PeopleSalary<=100000)not null,
	--電話 約束unique 唯一 電話是唯一的
	PeoplePhone varchar(20)unique not null,
	--地址
	PeopleAddress varchar(300),
	--添加時間,獲取當前時間預設值,有一個函數 getdate()
	PeopleAddTime smalldatetime default(getdate()) not null
)

--修改表結構---

--(1)CRUD列
--alter table 表名 add 新列名 數據類型
--添加列 員工表添加郵箱列
alter table People add Mail varchar(200)
--alter table 表名 drop column 列名 
--刪除列 員工表刪除郵箱列
alter table People drop column Mail
--alter table 表名 alter column 列名 數據類型
--修改地址為 200
alter table People alter column PeopleAddress varchar(200)

--維護約束---(刪除 添加)
--刪除約束
--alter table 表名 drop constraint 約束名
--alter table People drop constraint xxx
--添加約束
--alter table 表名 add constraint 約束名 check(表達式)
--alter table People add constraint psadad check(PeopleSex='男' or PeopleSex='女')
--添加主鍵 唯一 預設 外鍵
--alter table 表名 add constraint 約束名 primary key (列名)


insert into Department(DepartmentName,DepartmentRemark)
values('市場部','..........')

insert into Department(DepartmentName,DepartmentRemark)
values('軟體部','..........')

insert into Department(DepartmentName,DepartmentRemark)
values('企劃部','..........')

insert into Department(DepartmentName,DepartmentRemark)
values('銷售部','..........')
--最好一一對應 如果列順序改變就回值出問題
--一次性插入多行數據

  • 表內容 crud
點擊查看代碼
use Mytest
select *from Department
select * from [Rank]
select * from People


--數據crud
--修改
--update 表名 set 列名='xxx' where 條件
--update 表名 set 列名='xxx', 列名='yyy' where 條件

update Department set DepartmentName='經理部' where DepartmentId=8
update People set PeopleSalary=PeopleSalary+1000 

update People set PeopleSalary=15000 where RankId=3 and PeopleSalary<=15000
update People set PeopleSalary=PeopleSalary*2,PeopleAddress='西京' where PeopleName='關羽7'

--delete drop truncate區別
--drop table xxx 刪除表對象xxx
--delete from xxx 刪除表xxx的數據, 即表對象和結構都存在
--truncate table xxx 刪除數據(清空數據)即表對象和結構都存在

--truncate 清空所有數據,不能有數據。 delete 可以刪除所有數據也可以帶條件刪除符合條件的數據
--自動編號 1,2,3,4,5
--truncate 編號為:1,2,3,4,5 (重頭開始)
--delete   編號將為6,7,8,9,10(繼續)
--查詢 as可省略 ,distinct()去重,
select PeopleName 姓名 from People
select distinct(PeopleAddress) from People
select PeopleSalary*1.2 加薪後,PeopleSalary 加薪前 from People
--按照 名字長度的前5個查詢
select top 5 PeopleName from People order by len(PeopleName)
--按照 名字長度的前25%查詢
select top 25 percent PeopleName from People order by len(PeopleName)
--按照 名字長度的後25%查詢
select top 25 percent PeopleName from People order by len(PeopleName) desc
--查詢為null的值的單位
select *from People where PeopleAddress is null;
--查詢非空的值 和‘ ’區別 null就是沒填  ‘ ’insert 有欄位但是空白
select *from People where PeopleAddress is not null;
--查詢時間的 1988到2000的
select * from People where PeopleBirth>'1988-8-7' and PeopleBirth<'2000-3-1'

select * from People where PeopleBirth between '1988-8-8'and '2000-3-1'

select * from People where year(PeopleBirth) between 1988  and 2000
--查詢年紀在多少歲的
select PeopleName,year(GETDATE())-YEAR(PeopleBirth) 年齡 from People
--查詢年紀在35歲以下的
select PeopleName,year(GETDATE())-YEAR(PeopleBirth) 年齡 from People where year(GETDATE())-YEAR(PeopleBirth)<35 and PeopleSalary >5000
select* from People where (MONTH(PeopleBirth)=11 and DAY(PeopleBirth)<=22) or (MONTH(PeopleBirth)=12 and DAY(PeopleBirth)<=31)
--子查詢
select *from People where PeopleAddress=
(select PeopleAddress from People where PeopleName='關羽')
--龍 8
--鼠 4
--

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

-Advertisement-
Play Games
更多相關文章
  • 操作系統 移動端 安卓 iOS 鴻蒙 其他工業系統 桌面端 Windows MaciOS Unix Linux 伺服器 Unix Linux 購買主機 阿裡雲 騰訊雲 華為雲 其他雲平臺 虛擬機 宿主主機 物理硬體 CPU 記憶體 硬碟 操作系統 Mac Windows 虛擬機 Virtual Box ...
  • 一·依賴包以及下載地址 本文使用到的離線包: apr-1.7.0.tar.gz apr-util-1.6.1.tar.gz pcre2-10.40.tar.gz expat-2.1.0-14.el7_9.x86_64.rpm expat-devel-2.1.0-14.el7_9.x86_64.rpm ...
  • SFTP 常用命令 通過堡壘機進入的 Linux 操作系統,無法直接使用 WinSCP 等工具進行文件的上傳下載。 可使用 SecureCRT 先進入命令行模式 ...
  • 1. 概述 1.1. SQL-92標準裡加入的最有用的特性 1.2. 寫法 1.2.1. 簡單CASE表達式 CASE sex WHEN '1' THEN ’男’ WHEN '2' THEN ’女’ ELSE ’其他’ END 1.2.1.1. 寫法簡單,但能實現的事情比較有限 1.2.2. 搜索C ...
  • 背景 早上收到某系統的告警tidb節點掛掉無法訪問,情況十萬火急。登錄中控機查了一下display信息,4個TiDB、Prometheus、Grafana全掛了,某台機器hang死無法連接,經過快速重啟後集群恢復,經排查後是昨天上線的某個SQL導致頻繁OOM。 於是開始亡羊補牢,來一波近期慢SQL巡 ...
  • 超詳細【入門精講】數據倉庫原理&實戰 一步一步搭建數據倉庫 內附相應實驗代碼和鏡像數據和腳本,參考B站up主哈嘍鵬程視頻撰寫而成,感謝!!! ...
  • 存儲引擎 一. MySQL體繫結構 MySQL Server 連接層:連接的處理、認證授權、安全方案、檢查是否超過最大連接數等。 服務層:SQL介面、解析器、查詢優化器、緩存 引擎層:引擎是數據存儲和提取的方式,引擎層有許多引擎可供使用,也可以自定義引擎。索引是在存儲引擎層實現的。 存儲層:存儲數據 ...
  • ##【問題描述】 開發有天碰到一個很奇怪的問題,他的場景是這樣子的: 通過Canal來訂閱MySQL的binlog, 當捕獲到有數據變化時,回到資料庫,反查該數據的明細,然後做進一步處理。 有一次,他碰到一個詭異的現象: 1. Canal收到消息,有一條主鍵id=31019319的數據插入 2. 1 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...