osCommerce:如何更改“数量”?字段从只允许数字改为所有字符?

发布于 2024-10-20 03:31:04 字数 37 浏览 3 评论 0原文

这是 MySQL 中的内容还是编程中的内容...无法弄清楚!

Is it something in MySQL or in the programming...cant figure it out!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最笨的告白 2024-10-27 03:31:04

在 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);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文