gpt4 book ai didi

mysql - PHP MySQL 选择 2 列,其中 1 列

转载 作者:行者123 更新时间:2023-11-29 04:23:38 25 4
gpt4 key购买 nike

我正在尝试从 table1 中选择 *,其中名字,姓氏 = 'Joe Bloggs'

显然名字和姓氏是表一中的 2 个不同的列,但是当我运行此 SQL 代码时出现错误:

SELECT * from table1 where forename, surname = 'Joe Bloggs'

对我能做什么有什么想法吗?

最佳答案

也许你的意思是

SELECT * from table1 where CONCAT_WS(' ',forename, surname) = 'Joe Bloggs'

SELECT * from table1 where 'Joe Bloggs' IN (forename, surname)

SELECT * from table1 where forename = 'Joe' AND surname = 'Bloggs'

关于mysql - PHP MySQL 选择 2 列,其中 1 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16567194/

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