用于从每一列值中删除最后两个词的 MySQL 查询
为此,可以使用 MySQL 中的 LEFT() 函数。让我们先创建一个表 -
mysql> create table DemoTable -> ( -> Name varchar(10) -> ); Query OK, 0 rows affected (0.71 sec)
使用插入命令在表中插入一些记录 -
mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('Chris'); Query OK, 1 row affected (0.07 sec) mysql> insert into DemoTable values('Robert'); Query OK, 1 row affected (0.11 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+--------+ | Name | +--------+ | John | | Chris | | Robert | +--------+ 3 rows in set (0.00 sec)
以下是从每一列值中删除最后两个单词的查询 -
mysql> select left(Name,length(Name)-2) from DemoTable;
这将产生以下输出 -
+---------------------------+ | left(Name,length(Name)-2) | +---------------------------+ | Jo | | Chr | | Robe | +---------------------------+ 3 rows in set (0.02 sec)
广告