SQL Server 高級sql總結

来源:http://www.cnblogs.com/lqLove/archive/2016/08/24/5803717.html
-Advertisement-
Play Games

Select 1、查詢表中所有的數據 select * from 表名 select all id,name from 表名 select id,name from 表名 2、查詢表中完全匹配的數據 select * from 表A,表B where 表A.id=表B.id select * fro ...


----------------------------------------------------------------------Select--------------------------------------------------------------------------------------------------------------------

1、查詢表中所有的數據

-----------select * from 表名

-----------select all  id,name from 表名

-----------select id,name  from 表名

2、查詢表中完全匹配的數據

-----------select *  from 表A,表B where 表A.id=表B.id

---------- select  *  from 表A inner join  表B on 表A.id=表B.id 

3、數據過濾【完全過濾/欄位過濾】

----------- select  distinct *  from 表A

-----------select  distinct(欄位) from 表A

4、數據統計

-----------select count(*) from 表A

-----------select count(1) from 表A

-----------select count(欄位) from 表A

-----------select count(distinct 欄位) from 表A

5、查詢前N條數據

-----------select top n *  from 表A

-----------select top (n) * from c order by id desc

6、查詢中的in和not in 與exists和 not exists

----------select * from 表A where not exists (select * from  表B where id = 表A.id )

----------select * from 表A where  exists (select * from  表B where id = 表A.id )

---------select * from 表A where id in  (select id from  表B)

---------select * from 表A where id  not  in  (select id from  表B)

7、資料庫中and與or的用法

--------select * from 表A where 欄位A='' and 欄位B=''

--------select * from 表A where 欄位A='' or 欄位B=''

8、union和union all進行並集運算

--------select id, name from 表A where 欄位 like '%' union select id, 欄位 from 表A where id = 4 ---------------------並集不重覆

--------select * from 表A where name like '%' union all select * from 表A---------------------並集重覆

---------select * from 表A where 欄位 like '%' intersect select * from 表A--------------------------交集(相同部分) 

----------select * from 表A where 欄位 like '%' except select * from 表A where 欄位 like '%' -------------除去(相同部分)

9、聚合函數

---------select max(欄位) 表A  

---------select min(欄位) 表A  

---------select count(欄位) 表A 

---------select avg(欄位) 表A 

---------select sum(欄位) 表A 

---------select var(欄位) 表A 

10、日期函數

-------select dateAdd(day, 3, getDate())

-------select dateAdd(year, 3, getDate())

-------select dateAdd(hour, 3, getDate())

---------------------計算返回數據----------------

----------select dateDiff(day, '2016-01-01', getDate())

----------select dateDiff(second, '2016-01-01 00:00:00', getDate())

----------select dateDiff(hour, '2016-01-01 00:00:00', getDate())

----------select dateName(month, getDate())

----------select dateName(minute, getDate())

----------select dateName(weekday, getDate())

---------select datePart(month, getDate())

---------select datePart(weekday, getDate())

---------select datePart(second, getDate())

---------select day(getDate())

---------select day('2016-01-01')

--------select month(getDate())

--------select month('2016-01-01')

--------select year(getDate())

--------select year('2016-01-01')

--------select getDate()

--------select getUTCDate()

11、數學函數

-------select pi()

-------select rand(100), rand(50), rand(), rand()

-------select round(rand(), 3), round(rand(100), 5)

-------select round(123.456, 2), round(254.124, -2)

-------select round(123.4567, 1, 2)

12、字元串

------select len(字元串)

------select reverse(字元串)

------select left(字元串, 4)

------select right(字元串, 4)

------select lower('abc'), lower('ABC')

------select upper('ABc'), upper('abc')

13、創建資料庫

-------create database 庫名稱

14、刪除資料庫

------drop  database  資料庫名稱

15、備份sql

-----use master exes sp_addumpdevice '資料庫' ,'備份名稱','備份地址'

16、開始備份

-----  backup  database pubs to '備份名稱'

17、創建表

------create  table 表名稱

18、刪除表

------drop  table 表名稱

19、增加列

------alter table 表名稱 add column col 列名稱

20、創建視圖

-------create  view  視圖名稱

21、刪除視圖

-----drop  view 視圖名稱

22、複製表數據

-------select  *  into 表B from 表A

------select top 0 into 表B from 表A

23、between的用法

------select *  from 表A  where time between  time1 and time2

-----select  *  from  表A where id  between  id1  and id2

 

 


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

-Advertisement-
Play Games
更多相關文章
  • 久等了,近期公司比較忙,學習的時間都沒有啊,到今日才有時間呢!!!好了,下麵就跟著筆者開始配置Hadoop集群吧。 hosts文件和SSH免密碼登錄配置好了之後,現在進入Hadoop安裝目錄,修改一些配置文件,修改配置還是相對簡單的,一下是需要修改的文件內容(當然這裡只是學習時的配置,更加深入的配置 ...
  • 轉自:http://chuansong.me/n/443660447865 PDB 的創建和訪問 在使用 dbca 建庫時,創建資料庫之前,可以保存一下創建腳本,分析其具體執行過程。以自定義方式創建名稱為julia的資料庫為例,其主要腳本 julia.sql 中包含如下腳本調用: 在第一個腳本 Cr ...
  • 資料庫集群 集群的存在意義是為了保證高可用、數據安全、擴展性以及負載均衡。 什麼是集群? 由二台或更多物理上獨立的伺服器共同組成的"虛擬"伺服器稱之為集群伺服器。一項稱做MicroSoft集群服務(MSCS)的微軟服務可對集群伺服器進 行管理。一個SQL Server集群是由二台或更多運行SQL S ...
  • DAC(Dedicated Admin Connection)是SQL Server 2005引入的一個東西,目的是在SQL Server發生嚴重性能問題的時候仍保留有限的資源保證管理員能夠執行一些簡單的命令用於問題診斷、釋放資源、殺死肇事進程等。微軟官方對DAC的說明:使用專用管理員連接。對於DA ...
  • select tpc.cspcode as id , tpc.cspcode||'('||tc.cname||'--'|| DECODE(tsp.cpagedesc,'LENGTH(tsp.cpagedesc)>30','...',tsp.cpagedesc)||')' as text from t ...
  • 隨著社會經濟的發展,特別是互聯網的發展,企業的數據呈現幾何級的增長,大數據在過去的幾年裡一直是一個非常非常火的概念,並且一直在持續。但與此同時,企業對於數據的理解和應用卻大相徑庭。有一部分企業通過數據分析和挖掘能夠降低企業成本,提升業績,但也有一些企業對於數據的分析和應用停留在較淺層次。所以,數據分... ...
  • 需要的jar包 使用ojdbc6.jar 在/META-INF/MANIFEST.MF里可以看到Specification-Version: 4.0 建表 將文件寫入資料庫 將文件從資料庫中讀出 ...
  • 1.去重語句:DELETE FROM `v_klg_item` WHERE id NOT IN (SELECT * FROM (SELECT MAX(id) FROM `v_klg_item` GROUP BY NAME) AS tmp); 2.資料庫不同表之間列的複製語句:INSERT INTO ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...