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 9083413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T20:46:03+00:00 2026-06-16T20:46:03+00:00

I have a postgresql DB and i want to query the table Locations to

  • 0

I have a postgresql DB and i want to query the table “Locations” to retrieve the names of all the locations that match the name that’s entered by the user. The column name is “LocationName”. I’m using ASP.net with C#.

NpgsqlConnection con = new NpgsqlConnection(ConfigurationManager.ConnectionStrings["ConnString"].ToString());

NpgsqlCommand cmd = new NpgsqlCommand("Select * from \"Locations\" where \"LocationName\" LIKE \"%@loc_name%\"", con);

cmd.Parameters.AddWithValue("@loc_name", Location_Name);

NpgsqlDataReader reader = cmd.ExecuteReader();

I get this exception:

Npgsql.NpgsqlException: ERROR: 42703: column "%((E'My place'))%" does not exist

I’ve tried running the query without using %, but it doesn’t work.
I’ve also tried using + and & like given below but that didn’t work either:

string query = "Select \"LocationName\" from \"Locations\" where \"LocationName\" LIKE '%'+ :loc_name +'%'";

with the above line, i get this exception:

Npgsql.NpgsqlException: ERROR: 42725: operator is not unique: unknown + unknown
  • 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-16T20:46:04+00:00Added an answer on June 16, 2026 at 8:46 pm

    you should use

    NpgsqlCommand cmd = new NpgsqlCommand("Select * from \"Locations\" where \"LocationName\" LIKE @loc_name", con);
    cmd.Parameters.AddWithValue("@loc_name", "%" + Location_Name + "%");
    

    you were inserting too much quotes: Postgre interpretes the string between double quote as a field/table-name. Let the parameter do the escape-string job

    P.S.: To concatenate string in Postgre you should use the || operator, see here. So your last query should be

    string query = "Select \"LocationName\" from \"Locations\" where \"LocationName\" LIKE '%' || :loc_name || '%'";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple MySQL query that I want to convert to PostgreSQL. After
I have created a table in postgreSQL. I want to look at the SQL
I want to create a read-only user in PostgreSQL. The intention is to have
I have a postgresql (v8.4) table with login id and timestamps, and I want
I have a table that looks something like this: CREATE TABLE student_results(id integer, name
I'm using Postgresql DB. I want to perform a query against a numeric column
I have a complex query in PostgreSQL and I want to use the result
I have a table in PostgreSQL with one number column and I have a
Is there any way to enumerate rows of query in postgresql? I have table
I am using a PostgreSQL database. I have one select query: select userid, name,

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.