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 存储过程名;

上一篇:如何制作exe程序可执行文件


下一篇:maven中去掉单元测试的配置