MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
问题描述
我正在尝试在脑海中编译这个..我有一个包含名字和姓氏字段的表我有一个字符串,如Bob Jones"或Bob Michael Jones"等.
I'm trying to compile this in my mind.. i have a table with firstname and lastname fields and i have a string like "Bob Jones" or "Bob Michael Jones" and several others.
问题是,我有例如名字中的鲍勃,以及姓氏中的迈克尔·琼斯
the thing is, i have for example Bob in firstname, and Michael Jones in lastname
所以我想
SELECT neededfield, CONCAT(firstname, ' ', lastname) as firstlast
FROM users
WHERE firstlast = "Bob Michael Jones"
但它说未知的列firstlast"..有人可以帮忙吗?
but it says unknown column "firstlast".. can anyone help please ?
推荐答案
您提供的别名用于查询的输出 - 它们在查询本身中不可用.
The aliases you give are for the output of the query - they are not available within the query itself.
您可以重复该表达式:
SELECT neededfield, CONCAT(firstname, ' ', lastname) as firstlast
FROM users
WHERE CONCAT(firstname, ' ', lastname) = "Bob Michael Jones"
或包装查询
SELECT * FROM (
SELECT neededfield, CONCAT(firstname, ' ', lastname) as firstlast
FROM users) base
WHERE firstLast = "Bob Michael Jones"
这篇关于MySQL选择与CONCAT条件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL选择与CONCAT条件
基础教程推荐
- oracle区分大小写的原因? 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 在多列上分布任意行 2021-01-01
