如何在 MySQL 中搜索以 A 开头的名称?
mysqlmysqli database
使用 LIKE 进行搜索,如下所示 −
select *from yourTableName where yourColumnName LIKE 'A%';
首先我们创建一个表 −
mysql> create table DemoTable ( StudentName varchar(100) ); Query OK, 0 rows affected (0.66 sec)
现在您可以使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values('John Smith'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable values('Adam Smith'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('Aaron Taylor'); Query OK, 1 row affected (0.43 sec) mysql> insert into DemoTable values('Chris Brown'); Query OK, 1 row affected (0.27 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
输出
+--------------+ | StudentName | +--------------+ | John Smith | | Adam Smith | | Aaron Taylor | | Chris Brown | +--------------+ 4 rows in set (0.00 sec)
以下是在 MySQL 中搜索以 A 开头的名称的查询 −
mysql> select *from DemoTable where StudentName LIKE 'A%';
输出
+--------------+ | StudentName | +--------------+ | Adam Smith | | Aaron Taylor | +--------------+ 2 rows in set (0.00 sec)