gpt4 book ai didi

mysql 选择了所有记录和列,但是当我选择特定列时它不起作用

转载 作者:行者123 更新时间:2023-11-29 22:53:34 28 4
gpt4 key购买 nike

位置有3列:zip_id、城市、州

我可以:

SELECT * FROM location;

SELECT zip_id, city, state FROM location WHERE zip_id="94116";

SELECT zip_id, city, state FROM location WHERE city="san francisco";

但不能:

SELECT zip_id, city, state FROM location WHERE state="CA";

没有返回任何数据。怎么会?先感谢您。

最佳答案

你应该使用like而不是=

SELECT zip_id, city, state FROM location WHERE state like '%CA%';

= 将匹配精确的字符串,因此使其像 % 一样进行通配符匹配

关于mysql 选择了所有记录和列,但是当我选择特定列时它不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28803121/

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