在MySQL中获取特定的列值(名称)
要获取特定的列值,请使用LIKE子句。让我们首先创建一个表-
mysql> create table DemoTable1809(
Name varchar(20)
);
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable1809 values('John');mysql> insert into DemoTable1809 values('David');
mysql> insert into DemoTable1809 values('Mike');
mysql> insert into DemoTable1809 values('Johnson');
使用select语句显示表中的所有记录-
mysql> select * from DemoTable1809;
这将产生以下输出-
+---------+| Name |
+---------+
| John |
| David |
| Mike |
| Johnson |
+---------+
4 rows in set (0.00 sec)
这是获取特定值的查询
mysql> select * from DemoTable1809 where Name LIKE 'Johnson%';
这将产生以下输出-
+---------+| Name |
+---------+
| Johnson |
+---------+
1 row in set (0.00 sec)
以上是 在MySQL中获取特定的列值(名称) 的全部内容, 来源链接: utcz.com/z/338312.html