gpt4 book ai didi

php - Mysql PHP,如何选择以特定字符开头的数据

转载 作者:行者123 更新时间:2023-11-29 01:06:08 24 4
gpt4 key购买 nike

我有一张表cities:

+----+--------+
| id | zip |
+----+--------+
| 1 | 07500 |
| 2 | 07501 |
| 3 | 75000 |
| 4 | 75001 |
| 5 | 75002 |
+----+--------+

我需要选择 field zip750 开头的数据,所以我试过了:

SELECT FROM cities WHERE ZIP LIKE '%750%'

但这会返回表中包含 750 的所有数据,这是不正常的。我如何让我的查询选择以 750 开头的数据?

最佳答案

执行此查询:

SELECT FROM cities WHERE ZIP LIKE '750%'

解释

% 是一个特殊的 MySQL 字符,表示任何字符、空字符串或字符组。

示例:

LIKE '%a%' -- matches: a, ant, track | any string that contains a in any location
LIKE 'a%' -- matches: a, ant | strings that start with a
LIKE '%a' -- matches: a, data | strings that end with a

关于php - Mysql PHP,如何选择以特定字符开头的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14627389/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com