MySql与SqlServer的一些常用用法的差别

本文为转载

本文将主要列出MySql与SqlServer不同的地方,且以常用的存储过程的相关内容为主。

1. 标识符限定符

SqlServer

[]

MySql

``

2. 字符串相加

SqlServer

直接用 +

MySql

concat()

3. isnull()

SqlServer

isnull()

MySql

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

4. getdate()

SqlServer

getdate()

MySql

now()

5. newid()

SqlServer

newid()

MySql

uuid()

6. @@ROWCOUNT

SqlServer

@@ROWCOUNT

MySql

row_count()
注意:MySql的这个函数仅对于update, insert, delete有效

7. SCOPE_IDENTITY()

SqlServer

SCOPE_IDENTITY()

MySql

last_insert_id()

8. if ... else ...

SqlServer

IF Boolean_expression

{ sql_statement | statement_block }

[ ELSE

{ sql_statement | statement_block } ]

-- 若要定义语句块,请使用控制流关键字 BEGIN 和 END。

MySql

IF search_condition THEN statement_list

[ELSEIF search_condition THEN statement_list] ...

[ELSE statement_list]

END IF

注意:对于MySql来说,then, end if是必须的。类似的还有其它的流程控制语句,这里就不一一列出。

9. declare

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

10. 游标的写法

SqlServer

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;

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

11. 分页的处理

SqlServer

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;

当然,SqlServer中并不只有这一种写法,只是这种写法是比较常见而已。

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();

end

MySql与SqlServer的差别实在太多,以上只是列出了我认为经常在写存储过程中会遇到的一些具体的差别之处。

MySql与SqlServer的一些常用用法的差别的更多相关文章

  1. SqlServer与MySql的一些常用用法的差别

    最近学习了一下mySql,总结一下SqlServer不同一些用法: 操作符优先级以下列表显示了操作符优先级的由低到高的顺序.排列在同一行的操作符具有相同的优先级.:=||, OR, XOR&& ...

  2. 日期时间函数 mysql 和sqlserver 中对于常用函数的日期和时间函数的区别

    1. sqlserver中获取时间用getdate(),默认返回格式是2019-01-21 13:58:33.053,具体的年月日,时分秒毫米,年月日之间用短线连接,时分秒之间用冒号连接,秒和毫米之间 ...

  3. 字符串函数 mysql 和sqlserver 中对于字符串的常用函数和区别

    1. 对于字符串大小写的统一 mysql和sqlserver中都有同名函数lower()和upper(),但是mysql中还有另外一对函数,达到同样的目的,lcase()和ucase(),也就是英文中 ...

  4. MySQL的mysqldump工具的基本用法

    导出要用到MySQL的mysqldump工具,基本用法是:    shell> mysqldump [OPTIONS] database [tables]    如果你不给定任何表,整个数据库将 ...

  5. spring boot 配置双数据源mysql、sqlServer

    背景:原来一直都是使用mysql数据库,在application.properties 中配置数据库信息 spring.datasource.url=jdbc:mysql://xxxx/test sp ...

  6. iptables-25个常用用法【转】

    本文介绍25个常用的iptables用法.如果你对iptables还不甚了解,可以参考上一篇iptables详细教程:基础.架构.清空规则.追加规则.应用实例,看完这篇文章,你就能明白iptables ...

  7. MySQL与SQLServer的区别(一千条语句)

    ER图.分页.差异.Java连接MySQL SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset LIMIT 子句可以被用于强制 ...

  8. Mysql和sqlServer命令比较

    http://cool.china.blog.163.com/blog/static/697310642010111202531210 Mysql和sqlServer命令比较 按语句功能划分,依次讲解 ...

  9. MySQL replace 和 replace into 的用法

    mysql replace实例说明: UPDATE tb1 SET f1=REPLACE(f1, 'abc', 'def'); REPLACE(str,from_str,to_str) 在字符串 st ...

随机推荐

  1. Adding Value To Combo List at Runtime in Oracle Forms

    You want to add a value in Combo List item in Oracle Forms, by typing it in combo list box text area ...

  2. D django 用户认证系统

    django认证系统包含三个部分:用户.权限和分组 安装 django项目默认启用了认证系统,如果不是使用django-admin.py创建项目的可以通过在settings配置文件里面的INSTALL ...

  3. 用sql的select语句从数据库中获取数据

    基本的select语句 select语句中的算数表达式和NULL值 列的别名 使用连接符操作,literal character strings,alternative quote operator, ...

  4. SQL collate

    摘自:http://www.cnblogs.com/window5549-accp/archive/2009/10/03/1577682.html 我们在create table时经常会碰到这样的语句 ...

  5. Codeforces Round #382 (Div. 2) D. Taxes 歌德巴赫猜想

    题目链接:Taxes D. Taxes time limit per test 2 seconds memory limit per test 256 megabytes input standard ...

  6. hdu 1568 Fibonacci 快速幂

    Fibonacci Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Proble ...

  7. yii::app(); 怎么得到module、controller、action的名字

    $module = Yii::app()->controller->module->id; $controller = Yii::app()->controller->i ...

  8. iOS - Delegate 代理

    1.Delegate 1.1 协议 协议:是多个类共享的一个方法列表.协议中列出的方法没有相应的实现,计划由其他人来实现.协议中列出的方法,有些是可以选择实现,有些是必须实现. 1>.如果你定义 ...

  9. effect c++ 口诀。

    常用条款,写成口诀,记住.知其所以,也要时时使用. 1)习惯c++: 联替const初. 2)构造,复制,析构: 要知默,构赋析. 若不需,明拒绝. 构析不调虚. 异不逃析构. 基析要虚函. 赋值操, ...

  10. [转载] 高效MacBook工作环境配置

    原文: http://www.xialeizhou.com/?p=71 高效MacBook工作环境配置 发表于 2015 年 8 月 1 日 由 xialeizhou 本文记录整个配置过程,供新入手M ...