gpt4 book ai didi

mysql - 从 Longtext 到 decimal(17,4) 的转换

转载 作者:行者123 更新时间:2023-11-28 23:31:46 28 4
gpt4 key购买 nike

我一直在网上寻找它的解决方案,但找不到解决办法。例如,我有一个名为 temp 的表:

incassoid  productid  productamount  amount    
--------- --------- ------------- -------
1 1 50.00 50.0000
2 1 40.00 40.0000
3 1 50.00 50.0000

其中productamount的类型是longtext,我想转换成Decimal(17,4),到目前为止我试过:

ALTER TABLE temp ALTER COLUMN productamount Decimal(17,4);

但它给了我一个错误:

 Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Decimal(17,4)' at line 1

我不知道出了什么问题,有人可以帮忙解决这个问题......

谢谢

最佳答案

对MySQL使用MODIFY关键字

ALTER TABLE temp MODIFY COLUMN productamount Decimal(17,4);

关于mysql - 从 Longtext 到 decimal(17,4) 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37138157/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com