大家好我知道这已经在很多线程中得到了解答,但我无法弄清楚我的查询中的错误是什么。我得到错误'操作数应该包含1列'。看起来像我在这里建立的查询的怪物,任何帮助将不胜感激:
SELECT u.* FROM (
(SELECT fx_users.id, CONCAT_WS(' ', last_name, first_name) as matched_field, 'person' as type
FROM fx_users
LEFT JOIN fx_profiles ON fx_profiles.user_id = fx_users.id
WHERE (fx_profiles.first_name, fx_profiles.last_name, fx_profiles.research_area LIKE '%a%'
OR fx_profiles.bio LIKE '%a%'
OR fx_profiles.institution LIKE '%a%'
OR fx_profiles.faculty LIKE '%a%'
OR fx_profiles.faculty_position LIKE '%a%'
OR fx_profiles.department LIKE '%a%'
OR fx_profiles.website LIKE '%a%'
OR fx_profiles.country LIKE '%a%'
OR fx_profiles.city LIKE '%a%'
OR fx_profiles.address LIKE '%a%'
OR fx_profiles.zip_code LIKE '%a%'
OR fx_profiles.keywords LIKE '%a%' )
)
UNION (SELECT fx_publications.publication_id, fx_publications.title as matched_field, 'publication' as type
FROM fx_publications
WHERE ( publications.authors LIKE '%a%'
OR publications.year LIKE '%a%'
OR publications.title LIKE '%a%'
OR publications.reference LIKE '%a%' )
)
UNION (SELECT fx_projects.project_id, fx_projects.title as matched_field, 'project' as type
FROM fx_projects
WHERE ( projects.title LIKE '%a%'
OR projects.description LIKE '%a%' )
)
) AS u
ORDER BY id DESC
LIMIT 0, 20
任何帮助将不胜感激。 PS:这是我的Codeigniter模型中代码的一部分。
答案 0 :(得分:2)
这条线没有意义:
WHERE (fx_profiles.first_name, fx_profiles.last_name, fx_profiles.research_area LIKE '%a%'
您应将其更改为:
WHERE (fx_profiles.first_name LIKE '%a%' or
fx_profiles.last_name LIKE '%a%' or
fx_profiles.research_area LIKE '%a%'
. . .