在 mysql phpmyAdmin 中修剪字母数字数据的 Sql 语法
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
备份你的表。如果您做不到这一点,请不要继续。
像在测试表上一样测试命令并确保您理解它:
当它在测试表上运行时您感到满意,并且备份已完成时,请对真实表执行此操作。
有关 MySQL 字符串函数的更多信息如下:
http://dev .mysql.com/doc/refman/5.0/en/string-functions.html
从 phpMyAdmin 运行 SQL 位于:
http://community.mybb.com/thread-4720.html
Back up your tables. If you can't do this, don't continue.
Test a command like on a test table and make sure you understand it:
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