gridview select command question

  • Thread starter Thread starter Tammy B
  • Start date Start date
T

Tammy B

Hi!

I have the following select command:
SelectCommand="SELECT [id], [Name], [Address1], [Address2], [CITY], [STATE],
[ZIP], [COUNTRY] from [MyTable] WHERE ([Address1] = @txtAddress1)"

I would like to be able to use a LIKE operator rather than EQUALS

I can't figure it.

Can you help?

THANKS!!!!
 
Hi,
you can use

SelectCommand="SELECT [id], [Name], [Address1], [Address2], [CITY], [STATE],
[ZIP], [COUNTRY] from [MyTable] WHERE ([Address1] LIKE '%' + @txtAddress1
+'%' )"

It would work fine...

Best wishes
Munawar Hussain

(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top