一、查询系统内的所有数据库
1、MySQL语句:show databases;
2、SqlServer语句:select name,database_id,create_date from sys.databases;
二、查询数据库内所有表
1、MySQL语句:show tables;
2、SqlServer语句:select * from sysobjects where xtype='U';
三、显示表结构
1、MySQL语句:desc 表名;
2、SqlServer语句:sp_help orders
sp_columns orders
四、查询student表前10条记录
1、MySQL语句:select * from student limit 10;
2、SqlServer语句:select top 10 * from student;
五、获取当前时间
1、MySQL语句:now();
2、SqlServer语句:getdate();
六、自增字段设置,比如设置id字段自增
1、MySQL语句:id int primary key auto_increment;
2、SqlServer语句:id int primary key identity(1,1);
七、修改表字段的数据类型,比如修改id字段类型为bigint
1、MySQL语句:alter table test modify id bigint;
2、SqlServer语句:alter table test alter column[id] bigint;
八、枚举字段
1、MySQL语句:sex enum('男','女');
2、SqlServer语句:sex NVARCHAR(2) CHECK(sex = '男' or sex='女');