Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9251317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:40:05+00:00 2026-06-18T10:40:05+00:00

I have this query select name || ‘ ‘ || sure_name from users which

  • 0

I have this query

select name || ' ' || sure_name from users

which has this result

'test test'
'test1 test1'
...

I need to create a filter for this query. But I’m wondering what would be best way of creating it. I came up with this:

select name || ' ' || sure_name from users
where name || ' ' || sure_name = 'test test'

But I’m wondering how efficient will be this query as the concating happens twice (in the select statement and also in the where statement)

EDIT

the filter could look like

like '%test t'
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T10:40:06+00:00Added an answer on June 18, 2026 at 10:40 am

    The concatenation itself is not the problem, but the access to the rows.

    For example, if you have an index on sure_name or on name, it is better to query with separate columns.

    select name || ' ' || sure_name from users
    where name ='test' and sure_name = 'test';
    

    But if you don’t have any indexes, don’t bother. The performance will be roughly the same with your query.

    However, if you add an index

    create index fbi_full_name on users(name || ' ' || sure_name)
    

    your query will perform better.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this working query: $q = $this->db->query('SELECT u.name FROM users u JOIN user_group
I have this query: SELECT id, name FROM users WHERE ((id = 1) OR
I have this query: SELECT DISTINCT u.id, u.name, n.network_id, n.perm FROM users as u
Say I have this query: SELECT name::text, id::int, pass:bool FROM mytable; which gives me
I have this query: SELECT * FROM Users; Where I get back id name
I have this query: public function checkUser($phone) { $sql = SELECT name FROM users
i have this sql query select * from table where name like ? but
So I have this query that works perfectly: SELECT users.*, GROUP_CONCAT(categories.category_name) AS categories FROM
I have a query like this: select empno,name from emp where job = 'CLERK'
I have a query like this SELECT TOWN, NAME FROM CINEMA WHERE CITY_ID =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.