SQL Server 知識彙總

2022-01-18 18:44:42 字數 1023 閱讀 7971

select

@@servername

--計算機名

select

@@servicename

--資料庫名

select

@@version

--獲取當前資料庫版本

select

@@language

--當前語言

配置函式

select

getdate() as

getdate

--當前時間

select getutcdate() as getutcdate --

獲取utc時間

select

day(getdate()) as

day--

取出天

select

month(getdate()) as

month

--取出月

select

year(getdate()) as

year

--取出年

select

dateadd(d,3,getdate()) as

dateadd

--加三天,注意'd'表示天,'m'表示月,'yy'表示年,下面一樣

select

datediff(d,'

2004-07-01

','2004-07-15

') as

datediff

--計算兩個時間的差

select

datename(d,'

2004-07-15

') as

datename

--取出時間的某一部分

select

datepart(d,getdate()) as

datepart

--取出時間的某一部分

時間函式

print('

除錯資訊

')

輸出函式

sql server 優化 彙總

原創連線 sql server查詢優化 sql server效能優化綜述 sql語句優化彙總 sql優化34條 sql語句優化彙總 sql server資料庫的整理優化的基本過程 一 sql server 資料庫的整理優化的基本過程 二 sql server優化 1 索引 2008 sql serv...

SQL Server異常彙總

例如需要使用sa使用者名稱訪問school資料庫失敗,提示如下 你要設定的 資料庫 屬性 檔案 所用者設為sa,回到使用者對映檢視,已勾選上.還有一些情況 1 將登入方式設為 混合認證 右擊伺服器 選擇 安全性 點選 sql server 和windows身份認證模式 2 設定sa賬戶 資料庫 安全...

sqlserver 日期格式彙總

quote color red 用getdate 方法可以獲取當現的日期加上 color 時間。但是如果我們只需要得到當前的日期,不需要時間部分,或者不需要日期只要時間部分,再或者我要只要欄位中的日期以某種形式顯示,應該怎麼操作呢?可以使用 convert varchar 10 getdate 12...