当前位置:七道奇文章资讯数据防范MySQL防范
日期:2011-04-07 15:59:00  来源:本站整理

<b>MySQL VS SQL Server之用法差别</b>[MySQL防范]

赞助商链接



  本文“<b>MySQL VS SQL Server之用法差别</b>[MySQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

由于工作的缘由:上家公司的数据库全采取MySQL,所以不得不用它.因此也学到了MySQL的一些知识,但考虑到此后大概没机会利用了,所以想趁目前离任在家歇息,打算把这些东西整理一下,也为了万一此后能用上,留个参考的资源.考虑到一向在利用SQL Server,所以就打算直接与SQL Server比较来写.

本文将主要列出MySQL与SQL Server差别的地方,且以常用的存储历程的相关内容为主.

1. 标识符限定符

数据库 标识符限定符
SQL Server []
MySQL ``

2. 字符串相加

数据库 字符串相加
SQL Server 直接用 +
MySQL concat()

3. isnull()

数据库 isnull()
SQL Server isnull()
MySQL ifnull()

注意:MySQL也有isnull()函数,但意义不一样

4. getdate()

数据库 getdate()
SQL Server getdate()
MySQL now()

5. newid()

数据库 newid()
SQL Server newid()
MySQL uuid()

6. @@ROWCOUNT

数据库 @@ROWCOUNT
SQL Server @@ROWCOUNT
MySQL row_count()

注意:MySQL的这个函数仅关于update, insert, delete有效 

7. SCOPE_IDENTITY()

数据库 SCOPE_IDENTITY()
SQL Server SCOPE_IDENTITY()
MySQL last_insert_id()

8. if ... else ...

数据库 if ... else ...
SQL Server
  1.  IF Boolean_expression   
  2.      { sql_statement | statement_block }   
  3. ELSE   
  4.      { sql_statement | statement_block } ]  
-- 若要定义语句块,请利用掌握流关键字 BEGIN 和 END.
MySQL
  1. IF search_condition THEN statement_list  
  2.     [ELSEIF search_condition THEN statement_list] ...  
  3.     [ELSE statement_list]  
  4. END IF  

注意:关于MySql来说,then, end if是必须的.近似的还有别的的流程掌握语句,这里就不一一列出.

9. declare

其实,SQL Server和MySQL都有这个语句,用于定义变量,但差别在于:在MySQL中,DECLARE仅被用在BEGIN ... END复合语句里,并且必须在复合语句的开首,在任何别的语句之前.这个要求在写游标时,会感受很BT.

10. 游标的写法

SQL Server

  1. declare @tempShoppingCart table (ProductId int, Quantity int)  
  2. insert into @tempShoppingCart (ProductId, Quantity)  
  3.     select ProductId, Quantity from ShoppingCart where UserGuid = @UserGuid  
  4.  
  5.  
  6. declare @productId int 
  7. declare @quantity int 
  8. declare tempCartCursor cursor for   
  9.         select ProductId, Quantity from @tempShoppingCart  
  10.  
  11. open tempCartCursor  
  12. fetch next from tempCartCursor into @productId, @quantity  
  13. while  @@FETCH_STATUS = 0  
  14. begin 
  15.     update Product set SellCount = SellCount + @quantity    where productId = @productId  
  16.  
  17.     fetch next from tempCartCursor into @productId, @quantity  
  18. end 
  19.  
  20. close tempCartCursor  
  21. deallocate tempCartCursor 

MySQL

  1. declare m_done int default 0;  
  2. declare m_sectionId int;  
  3. declare m_newsId int;  
  4.  
  5. declare _cursor_SN cursor for select sectionid, newsid from _temp_SN;  
  6. declare continue handler for not found set m_done = 1;  
  7.  
  8. create temporary table _temp_SN select sectionid, newsid from SectionNews  group by sectionid, newsid having count(*) > 1;  
  9.  
  10. open _cursor_SN;  
  11. while( m_done = 0 ) do  
  12.     fetch _cursor_SN into m_sectionId, m_newsId;  
  13.       
  14.     if( m_done = 0 ) then   
  15.         -- 具体的处理逻辑  
  16.     end if;  
  17. end while;  
  18. close _cursor_SN;  
  19. drop table _temp_SN; 

注意:为了提高性能,普通在表变量上翻开游标,不要直接在数据表上翻开游标.

11. 分页的处理

SQL Server

  1. create procedure GetProductByCategoryId(   
  2.     @CategoryID int,   
  3.     @PageIndex int = 0,   
  4.     @PageSize int = 20,   
  5.     @TotalRecords int output 
  6. )   
  7. as 
  8. begin 
  9.        
  10. declare @ResultTable table 
  11. (   
  12.     RowIndex int,   
  13.     ProductID int,   
  14.     ProductName nvarchar(50),   
  15.     CategoryID int,   
  16.     Unit nvarchar(10),   
  17.     UnitPrice money,   
  18.     Quantity int 
  19. );   
  20.        
  21. insert into @ResultTable   
  22. select row_number() over (order by ProductID ascas RowIndex,   
  23.        p.ProductID, p.ProductName, p.CategoryID, p.Unit, p.UnitPrice, p.Quantity   
  24. from   Products as p   
  25. where CategoryID = @CategoryID;   
  26.          
  27. select  @TotalRecords = count(*) from  @ResultTable;   
  28.        
  29. select *   
  30. from   @ResultTable   
  31. where  RowIndex > (@PageSize * @PageIndex) and RowIndex <= (@PageSize * (@PageIndex+1));   
  32.        
  33. end

当然,SQL Server中并不只有这一种写法,只是这种写法是对比常见罢了.

MySQL

  1. create procedure GetProductsByCategoryId(  
  2.    in _categoryId int,  
  3.    in _pageIndex int,  
  4.    in _pageSize int,  
  5.    out _totalRecCount int 
  6. )  
  7. begin 
  8.    
  9.    set @categoryId = _categoryId;  
  10.    set @startRow = _pageIndex * _pageSize;  
  11.    set @pageSize = _pageSize;  
  12.    
  13.    prepare PageSql from 'select sql_calc_found_rows * from product  where categoryId = ? order by ProductId desc limit ?, ?';  
  14.    execute PageSql using @categoryId, @startRow, @pageSize;  
  15.    deallocate prepare PageSql;  
  16.    set _totalRecCount = found_rows();  
  17.    
  18. end 

MySQL与SQL Server的差别实在太多,以上只是列出了本人认为常常在写存储历程中会碰到的一些具体的差别之处.   以上是“<b>MySQL VS SQL Server之用法差别</b>[MySQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:

  • <b>hosts是什么 hosts文件在什么位置 若何改正hosts</b>
  • <b>在 Windows 8 中手动安装语言包</b>
  • <b>五个常见 PHP数据库问题</b>
  • Windows中Alt键的12个高效快速的利用本领介绍
  • <b>MySQL ORDER BY 的实现解析</b>
  • <b>详解MySQL存储历程参数有三种范例(in、out、inout)</b>
  • <b>Win8系统恢复出来经典的开始菜单的办法</b>
  • <b>Win8系统花屏怎么办 Win8系统花屏的办理办法</b>
  • <b>Windows 7系统下无线网卡安装</b>
  • <b>为什么 Linux不需求碎片整理</b>
  • <b>Windows 8中删除账户的几种办法(图)</b>
  • <b>教你如安在win7下配置路由器</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .