1.SqlServer中的类型bit(1)对应MySQL的tinyint(1)
2.SqlServer中用getdate()获取数据库系统当前时间;MySQL中NOW()获取数据库系统当前时间
3.SqlServer中转型需要用cast,mysql不需要用cast;
4.SqlServer存储过程中循环中退出需要用break,mysql用leave
1.SqlServer中的类型bit(1)对应MySQL的tinyint(1)
2.SqlServer中用getdate()获取数据库系统当前时间;MySQL中NOW()获取数据库系统当前时间
3.SqlServer中转型需要用cast,mysql不需要用cast;
4.SqlServer存储过程中循环中退出需要用break,mysql用leave