osCommerce:如何更改“数量”?字段从只允许数字改为所有字符?
这是 MySQL 中的内容还是编程中的内容...无法弄清楚!
Is it something in MySQL or in the programming...cant figure it out!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 mysql 表中,Quantity 设置为“int”数据类型。您可以更改该表并将其更改为“varchar”数据类型,这样您也可以在其中包含字母。
尝试这样的事情:
ALTER TABLE t1 CHANGE amount amount VARCHAR(255);
in the mysql table the Quantity is set to an "int" data type. you can alter the table and change it to a "varchar" data type and that would allow you to have letters in there as well.
try something like this:
ALTER TABLE t1 CHANGE quantity quantity VARCHAR(255);