Wrox Programmer Forums
Go Back   Wrox Programmer Forums > SQL Server > SQL Server 2000 > SQL Server 2000
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 9th, 2003, 01:30 AM
Authorized User
 
Join Date: Aug 2003
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Default not work in sql query like '%[%'

I've created a table contains a column with varchar(3) data type.
When I query "select * from test where msg like '%[%'",
it doesn't work.

Can anyone help me?
Thanks a lot.



 
Old October 9th, 2003, 03:30 AM
Authorized User
 
Join Date: Jun 2003
Posts: 87
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi

There are 2 methods to do this :-

select * from test where msg like '%/[%' ESCAPE '/'
select * from test where msg like '%[[]%'

As [ is a wildcard you cannot use this as you would search for a 'normal' character.

Check out BOL and search for escape characters for further info.

Regards

Nickie
 
Old October 9th, 2003, 03:34 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 518
Thanks: 0
Thanked 0 Times in 0 Posts
Default

try to use

select * from test where msg like '%[x]%'"

ie. msg=window[xp]

there should be some value in the braket and braket closed.


Quote:
quote:Originally posted by vincentc
 I've created a table contains a column with varchar(3) data type.
When I query "select * from test where msg like '%[%'",
it doesn't work.

Can anyone help me?
Thanks a lot.








Similar Threads
Thread Thread Starter Forum Replies Last Post
Output Query to txt file from SQL Query everest SQL Server 2005 4 November 22nd, 2007 01:49 AM
Sql Query call does not work. mikehsu317 C# 0 September 26th, 2005 11:15 AM
Query wont work unless I copy and past into new on Mitch Access 1 March 4th, 2005 02:22 AM
Right after DTS, query doesn't work anymore?! rweide Classic ASP Databases 6 January 21st, 2005 04:11 PM
update query doesnt work knight Classic ASP Databases 4 June 10th, 2004 07:24 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.