1. 程式人生 > >Mysql 和 SQLServer 使用SQL差異比較

Mysql 和 SQLServer 使用SQL差異比較

username 寫法 兩個 差異比較 表名 eight () col table

查詢前100條數據

#mysql
select * from table_name limit 100 ;

#sqlserver
select top 100 * from table_name ;

從數據庫.表 定位表

#mysql寫法:庫名.表名

select password from Info.users where userName=boss

#Sqlserver寫法:庫名.dbo.表名 ;或者:庫名..表名 (註:中間使用兩個點)

select password from Info.dbo.users where userName=boss

獲取時間

MySQL寫法:now() 
SQLServer寫法:
getdate()

聯結查詢

# mysql & sqlserver 
select a.* , b.TypeName from Book as a left join BookType as b ON a.TypeId = b.TypeId 

Mysql 和 SQLServer 使用SQL差異比較