sql 转成mysql_sql server 转成mysql,如何转

sql server 转成mysql,怎么转

我在sql server 是这样的:

create table orders(

ordersId bigint primary key identity(1,1),--订单号

userId bigint constraint fk_client_id references users(userid),--哪个用户订的

orderDate datetime default getdate(),--下订单的时间

payMode varchar(20)check (payMode in('货到付款','支付宝付款')) default '货到付款',--付款的方式

isPayed bit check ( isPayed in (0 ,1)),--(0,表示还没有付款 1:表示已经付款了)

totalPrice float not null--总价格

)

create table orderDetail(

ordesIid bigint constraint fk_order_id references orders(ordersId),--订单号(并是一个外键) 指向orders表的主键

goodsId bigint constraint fk_shangpin_id references goods(goodsId),--商品号(并是一个外键) 指向goods表的主键

nums int not null--数量

)

我想问下我在mysql要怎么写才能实现同样效果的表,请各位高手指教下,谢谢!

------解决方案--------------------

1 . MySQL 中没有 identity(1,1), 用 auto_increment

2. MySQL 中不支持CHECK。

3. MySQL 语法略有不同。建议你可以参考一下手册中的语法和例子。

SQL code

mysql> create table orders( -> -> ordersId bigint auto_increment primary key , -- 订单号 -> userId bigint references users(userid), -- 哪个用户订的 -> orderDate datetime , -- 下订单的时间 -> payMode varchar(20) default '货到付款', -- 付款的方式 -> isPayed bit , -- (0,表示还没有付款 1:表示已经付款了) -> totalPrice float not null -- 总价格 -> ) -> ; Query OK, 0 rows affected (0.11 sec) mysql>

欢迎大家阅读《sql server 转成mysql,如何转》,跪求各位点评,by 搞代码

e7ce419cf2d6ad34d01da2ceb8829eed.png

微信 赏一包辣条吧~

023a57327877fb4402bcc76911ec18ea.png

支付宝 赏一听可乐吧~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值