phpmyadmin move text from one field to another(phpmyadmin 将文本从一个字段移动到另一个字段)
问题描述
我有一个包含 2 个字段的表格.电子邮件,额外
I have a table with 2 fields. Email, Extra
电子邮件字段中的每个条目都有一个名字,一个空格,然后是姓氏.例如.拉维·奈杜
Every entry in the email field has a name then a space and then surname. eg. Ravi Naidoo
是否有我可以运行的 SQL 查询将姓氏移动到额外表字段,然后将其与空格一起从电子邮件字段中删除?
Is there a SQL query that I would be able to run that would move the surname to the Extra Table field and then remove it from the Email field along with the space?
Eg. Email field: Ravi Naidoo
更改后会
Email field: Ravi
Extra field: Naidoo
我知道这个查询删除了空格:
I know that this query removes the space:
UPDATE your_table SET email = REPLACE(email, ' ', '')
但我不确定如何同时将姓氏文本移动到额外字段.
But am unsure how to move the surname text to the Extra field at the same time.
推荐答案
UPDATE your_table
SET extra = substring_index(email, ' ', -1),
email = substring_index(email,' ',1);
这篇关于phpmyadmin 将文本从一个字段移动到另一个字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:phpmyadmin 将文本从一个字段移动到另一个字段
基础教程推荐
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
