溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MySQL和SQL Server的用法區(qū)別是什么

發(fā)布時(shí)間:2021-08-20 11:15:17 來(lái)源:億速云 閱讀:209 作者:chen 欄目:數(shù)據(jù)庫(kù)

這篇文章主要介紹“MySQL和SQL Server的用法區(qū)別是什么”,在日常操作中,相信很多人在MySQL和SQL Server的用法區(qū)別是什么問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”MySQL和SQL Server的用法區(qū)別是什么”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

本文將主要列出MySQL與SQL Server不同的地方,且以常用的存儲(chǔ)過(guò)程的相關(guān)內(nèi)容為主。

1. 標(biāo)識(shí)符限定符

數(shù)據(jù)庫(kù) 標(biāo)識(shí)符限定符
SQL Server []
MySQL ``

2. 字符串相加

數(shù)據(jù)庫(kù) 字符串相加
SQL Server 直接用 +
MySQL concat()

3. isnull()

數(shù)據(jù)庫(kù) isnull()
SQL Server isnull()
MySQL ifnull()

注意:MySQL也有isnull()函數(shù),但意義不一樣

4. getdate()

數(shù)據(jù)庫(kù) getdate()
SQL Server getdate()
MySQL now()


5. newid()

數(shù)據(jù)庫(kù) newid()
SQL Server newid()
MySQL uuid()


6. @@ROWCOUNT

數(shù)據(jù)庫(kù) @@ROWCOUNT
SQL Server @@ROWCOUNT
MySQL row_count()


注意:MySQL的這個(gè)函數(shù)僅對(duì)于update, insert, delete有效

7. SCOPE_IDENTITY()

數(shù)據(jù)庫(kù) SCOPE_IDENTITY()
SQL Server SCOPE_IDENTITY()
MySQL last_insert_id()


8. if ... else ...

數(shù)據(jù)庫(kù) if ... else ...
SQL Server 

 IF Boolean_expression        { sql_statement | statement_block }   [ ELSE        { sql_statement | statement_block } ]  -- 若要定義語(yǔ)句塊,請(qǐng)使用控制流關(guān)鍵字 BEGIN 和 END。
MySQL 

IF search_condition THEN statement_list      [ELSEIF search_condition THEN statement_list] ...      [ELSE statement_list]  END IF  注意:對(duì)于MySql來(lái)說(shuō),then, end if是必須的。類似的還有其它的流程控制語(yǔ)句,這里就不一一列出。
 


9. declare

其實(shí),SQL Server和MySQL都有這個(gè)語(yǔ)句,用于定義變量,但差別在于:在MySQL中,DECLARE僅被用在BEGIN ... END復(fù)合語(yǔ)句里,并且必須在復(fù)合語(yǔ)句的開(kāi)頭,在任何其它語(yǔ)句之前。這個(gè)要求在寫(xiě)游標(biāo)時(shí),會(huì)感覺(jué)很BT.

10. 游標(biāo)的寫(xiě)法

SQL Server

declare @tempShoppingCart table (ProductId int, Quantity int)  insert into @tempShoppingCart (ProductId, Quantity)      select ProductId, Quantity from ShoppingCart where UserGuid = @UserGuid    declare @productId int declare @quantity int declare tempCartCursor cursor for           select ProductId, Quantity from @tempShoppingCart   open tempCartCursor  fetch next from tempCartCursor into @productId, @quantity  while  @@FETCH_STATUS = 0  begin     update Product set SellCount = SellCount + @quantity    where productId = @productId       fetch next from tempCartCursor into @productId, @quantity  end  close tempCartCursor  deallocate tempCartCursor MySQL

declare m_done int default 0;  declare m_sectionId int;  declare m_newsId int;   declare _cursor_SN cursor for select sectionid, newsid from _temp_SN;  declare continue handler for not found set m_done = 1;   create temporary table _temp_SN select sectionid, newsid from SectionNews  group by sectionid, newsid having count(*) > 1;   open _cursor_SN;  while( m_done = 0 ) do      fetch _cursor_SN into m_sectionId, m_newsId;            if( m_done = 0 ) then           -- 具體的處理邏輯      end if;  end while;  close _cursor_SN;  drop table _temp_SN; 注意:為了提高性能,通常在表變量上打開(kāi)游標(biāo),不要直接在數(shù)據(jù)表上打開(kāi)游標(biāo)。

11. 分頁(yè)的處理

SQL Server

create procedure GetProductByCategoryId(       @CategoryID int,       @PageIndex int = 0,       @PageSize int = 20,       @TotalRecords int output )   as begin        declare @ResultTable table (       RowIndex int,       ProductID int,       ProductName nvarchar(50),       CategoryID int,       Unit nvarchar(10),       UnitPrice money,       Quantity int );          insert into @ResultTable   select row_number() over (order by ProductID asc) as RowIndex,          p.ProductID, p.ProductName, p.CategoryID, p.Unit, p.UnitPrice, p.Quantity   from   Products as p   where CategoryID = @CategoryID;            select  @TotalRecords = count(*) from  @ResultTable;          select *   from   @ResultTable   where  RowIndex > (@PageSize * @PageIndex) and RowIndex <= (@PageSize * (@PageIndex+1));          end; 當(dāng)然,SQL Server中并不只有這一種寫(xiě)法,只是這種寫(xiě)法是比較常見(jiàn)而已。

MySQL

create procedure GetProductsByCategoryId(     in _categoryId int,     in _pageIndex int,     in _pageSize int,     out _totalRecCount int )  begin       set @categoryId = _categoryId;     set @startRow = _pageIndex * _pageSize;     set @pageSize = _pageSize;        prepare PageSql from select sql_calc_found_rows * from product  where categoryId = ? order by ProductId desc limit ?, ?;     execute PageSql using @categoryId, @startRow, @pageSize;     deallocate prepare PageSql;     set _totalRecCount = found_rows();     

MySQL與SQL Server的差別實(shí)在太多,以上只是列出了本人認(rèn)為經(jīng)常在寫(xiě)存儲(chǔ)過(guò)程中會(huì)遇到的一些具體的差別之處。

到此,關(guān)于“MySQL和SQL Server的用法區(qū)別是什么”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI