在 mysql phpmyAdmin 中修剪字母数字数据的 Sql 语法

发布于 2024-10-14 10:56:38 字数 316 浏览 0 评论 0原文

mysql phpmyadmin 中是否有任何语法查询来修剪字母数字(varchar)数据?我希望它发生的方式如下:

在我的表中,我有两个字段 id(int) 和 promocode(varchar)(25),在我的 promocode 列中,我有这个示例数据 BEFKR679GKQTX46AFKP14VY 由 (25) 组成...我希望它只修剪第一个 12 字母数字,使其看起来像这些 BEFKR679GKQT.. 而且我不知道如何更改现有的 1,000 个输入我表中的数据..全部为 12 个而不是 25 个。

Is there any syntax query in mysql phpmyadmin to trim alphanumeric(varchar) data? Here's how I want it to happen:

In my table i have two fields id(int) and promocode(varchar)(25), inside my promocode column I have this sample data BEFKR679GKQTX46AFKP14VY composed of (25) ...and i want it to trim the first 12 alphanumeric only, making it look like these BEFKR679GKQT.. and I don't know how to change the existing 1,000 inputted data in my table.. into all 12 not 25.

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

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

发布评论

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

评论(1

倾城花音 2024-10-21 10:56:38
  1. 备份你的表。如果您做不到这一点,请不要继续。

  2. 像在测试表上一样测试命令并确保您理解它:

    更新 my_table SET promocode = SUBSTRING(promocode,1,12);
    
  3. 当它在测试表上运行时您感到满意,并且备份已完成时,请对真实表执行此操作。

有关 MySQL 字符串函数的更多信息如下:

http://dev .mysql.com/doc/refman/5.0/en/string-functions.html

从 phpMyAdmin 运行 SQL 位于:

http://community.mybb.com/thread-4720.html

  1. Back up your tables. If you can't do this, don't continue.

  2. Test a command like on a test table and make sure you understand it:

    UPDATE my_table SET promocode = SUBSTRING(promocode,1,12);
    
  3. When it works you your satisfaction on test tables, and your back up is complete, do it to the real table.

More info on MySQL string functions is here:

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

Running SQL from phpMyAdmin is here:

http://community.mybb.com/thread-4720.html

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