SQLServer和MySql语法和关键字的区别(5)
发布时间:2021-06-05
发布时间:2021-06-05
SQLServer和MySql语法和关键字的区别
end
(17)建表中自增长问题:
create table user
(
Id varchar(10) primary key auto_increment not null, Name varchar(20) not null,
Password varchar(20),
create_date datetime
);
auto_increment 自增长
(18) "Unable to convert MySQL date/time value to System.DateTime"这是因为在日期列中有"0000-00-00"数据值,要修正这个问题,你可以把这些数据设为null,或者在连接字符串中设置"Allow Zero Datetime=True" 。
(19) MySQL视图的FROM子句不允许存在子查询,因此对于SQL Server中FROM子句带有子查询的视图,需要手工进行迁移。可通过消除FROM子句中的子查询,或将FROM子句中的子查询重构为一个新的视图来进行迁移。
下一篇:股票的波段买卖操作策略