備份,字串和日期函式

2021-08-01 14:35:49 字數 1469 閱讀 9366

--備份

--方法一

--只複製內容不複製約束

--一開始newstu不存在

select * into newstu from stu

select * from newstu

--方法二

--只拷貝表的結構

--效率不高

--1<>1判斷為false 所以資料不拷貝

select *into new1stu from stu where 1<>1

select * from new1stu

--方法三

select top 0 *into new2stu from stu

select *from new2stu

--方法四

--如何表已存在

--僅當使用了列列表並且 identity_insert 為 on 時,才能為表'new1stu'中的標識列指定顯式值。

insert into new1stu select * from stu

--字串 --c# trim()

ltrim()--左邊空格

rtrim()--右邊空格

len() --字串長度

datalength()--查位元組個數

--漢字兩個位元組 nvarchar nchar---帶n的空格算兩個位元組,不帶n空格算乙個

--最多能算的261年之前

lower()--轉小寫

upper()--轉大寫

select len(depname) from department

select len('水水水水水水水水水水')

select '===='+rtrim(ltrim(' *** '))+'*****=='

select '***'

--日期函式

--獲取

getdate()--獲取當前資料庫伺服器時間

dateadd()--加法 當前時間加5年

datediff()--獲取差值

datepart()--返回日期的某個部分

select dateadd(year,5,getdate())

select dateadd(year,-261,getdate())

--當前時間加5個月

select dateadd(month,5,getdate())

--當前時間加5天

select dateadd(day,5,getdate())

--五小時之後

select dateadd(hour,5,getdate())

select dateadd(second,5,getdate())

--獲取差值

select datediff(year,'2011',getdate())

--獲取今年

select datepart(year,getdate())

字串函式 日期函式

擷取檔名稱,輸出結果 cat.jpg echo substr url,pos 1 擷取檔案所在的路徑,輸出結果 c web apache2.4 htdocs echo substr url,0,pos tel 18810881888 隨意輸入一串數字作為手機號 len 4 需要覆蓋的手機號長度 re...

字串和字串函式

字元輸入輸出 getchar putchar ch getchar putchar ch 字串函式 字串輸入 建立儲存空間 接受字串輸入首先需要建立乙個空間來存放輸入的字串。char name scanf s name 上述的用法可能會導致程式異常終止。使用字串陣列 可以避免上述問題 char na...

字串和字串函式

1.字串字面量 字串常量 用雙引號括起來的內容稱為字串字面量,也叫字串常量。字串常量屬於靜態儲存類別,這說明如果在函式中使用字串常量,該字串只會被儲存一次,在整個程式的生命期內存在,計時函式被呼叫多次。用雙引號括起來的內容被視為指向該字串儲存位置的指標。hello 中的 hello 類似於乙個陣列名...