mysql和mssql區別sql語句
1、IN 關鍵字MYSQL可以多個欄位使用,MSSQL不可以
MYSQL: select * from user where (user_id,type) in ((568,6),(569,6),(600,8));
2、MSSQL 兩個整數做除法,如果想要得到小數,必須將分子轉化為小數(MYSQL不需要)
MSSQL: select round (cast(t.num as float)/2,2) as 'num' from Trips t
3、MYSQL與MSSQL新建表判斷是否表存在區別寫法
MSSQL:
if not exists(select null from sysobjects wherextype='u' and name ='表名' ) begin /*建表sql指令碼*/ create table [表名] ( /*列資訊*/) end
MYSQL:
CREATE TABLE IF NOT EXISTS '表名' ( /*列資訊*/)
4、MYSQL 支援 ENUM型別(欄位xx ENUM('值1','值2','值3'))和SET型別 MSSQL不支援。MYSQL不支援nchar,nvarchar,ntext型別
5、自增長列的插入:SQLServer中可以不為自動增長列插入值,MySQL中需要為自動增長列插入值。MySQL的遞增語句是AUTO_INCREMENT,SQLServer是identity(1,1)
6、獲取當前時間函式:MSSQL:getdate()方法獲取當前時間日期,MYSQL:以分日期型別和時間型別,獲取當前日期是cur_date(),當前完整時間是 now()函式
MYSQLDate 函式
NOW() 返回當前的日期和時間
CURDATE() 返回當前的日期
CURTIME() 返回當前的時間 、
DATE() 提取日期或日期/時間表達式的日期部分
EXTRACT() 返回日期/時間按的單獨部分
DATE_ADD() 給日期新增指定的時間間隔
DATE_SUB() 從日期減去指定的時間間隔
DATEDIFF() 返回兩個日期之間的天數
DATE_FORMAT() 用不同的格式顯示日期/時間
MSSQLDate 函式
GETDATE() 返回當前日期和時間
DATEPART() 返回日期/時間的單獨部分
DATEADD() 在日期中新增或減去指定的時間間隔
DATEDIFF() 返回兩個日期之間的時間
CONVERT() 用不同的格式顯示日期/時間
Date 資料型別
MYSQL使用下列資料型別在資料庫中儲存日期或日期/時間值:
DATE - 格式 YYYY-MM-DD
DATETIME - 格式: YYYY-MM-DD HH:MM:SS
TIMESTAMP - 格式: YYYY-MM-DD HH:MM:SS
YEAR - 格式 YYYY 或 YY
MSSQL使用下列資料型別在資料庫中儲存日期或日期/時間值:
DATE - 格式 YYYY-MM-DD
DATETIME - 格式: YYYY-MM-DD HH:MM:SS
SMALLDATETIME - 格式: YYYY-MM-DD HH:MM:SS
TIMESTAMP - 格式: 唯一的數字
7、從資料庫定位到表。
MSSQL::庫名.dbo.表名 ;或者:庫名..表名(注:中間使用兩個點)
select password from Info.dbo.users where userName='boss'
或者
select password from Info..users where userName='boss'
MYSQL:庫名.表名
select password from Info.users where userName='boss'
8、判斷是否存在某個資料庫,若存在,則刪除
MSSQL:
IF DB_ID('users') IS NOT NULL DROP DATABASE users
MYSQL:
Drop DATABASE if exists users
拓展:若sqlserver資料庫正在使用中,刪除之前,先要把資料庫變成“單一使用者”,再刪除
ALTER DATABASE users SET SINGLE_USER with ROLLBACK IMMEDIATE IF DB_ID('users') IS NOT NULL DROP DATABASE users
另附:判斷某資料庫中是否存在某張表,若存在,則刪除
MSSQL:
if exists(select * from sysobjects where name ='Users_test') drop table Users_test
MYSQL:
DROP TABLE IF EXISTS Users_test
9、主鍵存在,則更新,不存在,則插入
MYSQL:
INSERT into users (userID,userName,password) VALUES (1,’jmj’,’123’) ON DUPLICATE KEY UPDATE userName='jmj', password =123
MSSQL:沒有MySQL這樣的關鍵字,只能組合sql語句來實現操作:
if not exists (select userID from users where userID= 1)insert into users (userID,userName,password) values(1,’jmj’,’123’) else update users set userName= ’jmj’, password=’123’ where userID = 1
10、MYSQL對引數可以使用單引號,也可以使用雙引號,對欄位名和表明可以使用反引號。MSSQL只能使用單引號,且不能使用反引號。
MYSQL:
Select `password` from Users where userName='boss' or username=”jmj”
MSSQL:
Select password from Users where userName='boss' or username=’jmj’
11、MSSQL不支援limit語句,只能用top 取代limt 0,N,row_number() over()函式取代limit N,M
MSSQL:
select top 1 password from users where userName='boss'
MYSQL:
select password from users where userName='111'limit 0,1/*規定範圍 limit a,b——範圍a-b*/
12、查詢所有庫
MSSQL:
select * from [master]..[SysDatabases];
MYSQL:
SHOW DATABASES;
13、查詢指定庫中的所有表
MSSQL:
select *from 庫名.dbo.[SysObjects] where[type]='U';
MYSQL:
SHOW TABLES
14、擷取字串關鍵字
MSSQL:只能使用SUBSTRING關鍵詞來擷取字串。MYSQL:可以使用SUBSTRING和SUBSTR擷取字串
15、取得字串的長度關鍵字
MSSQL:只能使用Len關鍵詞取得字串的長度。MYSQL:可以使用Length取得字串的長度。
16、MYSQL支援insert into table1 set t1 = ‘’, t2 = ‘’ ,但是MSSQL不支援這樣寫
17、MYSQL不支援預設值為當前時間的datetime型別(MSSQL很容易做到),在MYSQL裡面是用timestamp型別