1. 資料庫轉換格式
字串轉換為日期格式 : convert(datetime, '2010-02-10')
2.單純獲取資料庫時間 select getdate();
3.getdate()可以與'2010-09-25'這樣的日期字串比較
4.資料查詢
乙個伺服器兩個庫select * from utildata.dbo.sysuser;
兩個伺服器 select * from opendatasource('sqloledb','data source=172.16.0.166;database=bbs;user id=sa;password=sa').utildata.dbo.user1;
5.資料庫計算兩個資料庫相差天數
select datediff(day,'2010-10-14','2010-12-18') day 是計算天數
資料庫語法 sql server
資料庫的實現 2.1t sql語句回顧 1.新增資料 語法 單條插入 insert into 表名 列名 1,列名 2 values 值1,值 2 多條插入 insert into 表名 select 值1,值 2 unio select 值 1,值 2 表存在 insert into 新錶名 se...
SQLServer2008資料庫 基礎語法
基本語法 一般語言的語法,基礎資料型別,變數賦值操作,條件,迴圈。sql特有操作 建立臨時表,增刪改查資料 執行sql 等操作 定義變數 declare a int declare user1 nvarchar 50 set賦值 set a 5 select 賦值 select a 張三 selec...
資料庫語法
建立乙個資料表 create table 表名 列名1型別1 約束,列名2型別 2 約束,列名 n型別n 約束 建立表時直接建立各種約束 create table 表名 列名1型別1 primary key 列名1,列名2,列名 n 主鍵約束列名2 型別2 unique,唯一約束列名3 型別3 id...