Mysql与SQLserver区别
Posted huangliming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql与SQLserver区别相关的知识,希望对你有一定的参考价值。
1、为空
SQLserver用isnull
Myserver用ifnull
2、全球唯一标识符
SQLserver用newid()
Myserver用uuid()
3、以分隔符拼接字符串
concat_ws(‘分隔符‘,分隔字段用逗号隔开)
4、字符串拼接
select count(‘gsdg‘,‘dgf‘,‘sdf‘)
执行后:gsdgdgfsdf
5、SQLserver用top
myserver用limit
用法:select * from class limit 0,1 (其中0代表第一行开始,1代表取一条)
6、创建存储过程(关键字必须是procedure不能是proc)
create procedure getstudent();
begin
select count(*) from student
end
7、执行存储过程
call getstudent()
8、删除存储过程(存储过程不能修改,只能删除后再创建)
drop procedure 存储过程名;
以上是关于Mysql与SQLserver区别的主要内容,如果未能解决你的问题,请参考以下文章