Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 2 fields first_name and last_name but i need concatenation of these fields as fullname.

My code is below

User.where('(users.first_name ILIKE ?) OR (users.last_name ILIKE ?)', "%#{search}%", "%#{search}%")

but i need something like

User.where('(users.fullname ILIKE ?) OR (users.first_name ILIKE ?) OR (users.last_name ILIKE ?)', "%#{search}%", "%#{search}%", "%#{search}%")
share|improve this question

2 Answers

up vote 7 down vote accepted

concatenation in Postgres like in SQLite: ||

(users.first_name || ' ' || users.last_name)

User.where('((users.first_name || ' ' || users.last_name) ILIKE ?) OR (users.first_name ILIKE ?) OR (users.last_name ILIKE ?)', "%#{search}%", "%#{search}%", "%#{search}%")
share|improve this answer
1  
this is not working in postgresql – mike101 Apr 17 '11 at 19:54
I haven't got postgres on my laptop to test it, but I am pretty sure I am right. Checkout this: stackoverflow.com/questions/43870/… – fl00r Apr 17 '11 at 19:55
and there was a typo: I was using LIKE instead of ILIKE – fl00r Apr 17 '11 at 19:56
/app/.bundle/gems/ruby/1.8/gems/activerecord-3.0.5/lib/active_record/connection_‌​adapters/abstract_adapter.rb:207:in log' /app/.bundle/gems/ruby/1.8/gems/activerecord-3.0.5/lib/active_record/connection‌​_adapters/postgresql_adapter.rb:493:in execute' /app/.bundle/gems/ruby/1.8/gems/activerecord-3.0.5/lib/active_record/connection‌​_adapters/postgresql_adapter.rb:983:in select_raw' /app/.bundle/gems/ruby/1.8/gems/activerecord-3.0.5/lib/active_record/connection‌​_adapters/postgresql_adapter.rb:976:in select' – mike101 Apr 17 '11 at 20:08
4  
You need single quotes instead of double quotes. – Peter Eisentraut Apr 18 '11 at 6:14
show 3 more comments

Change it to use single quotes and it will work:

(users.first_name || ' ' || users.last_name)

Instead of:

(users.first_name || " " || users.last_name)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.