Microsoft SQL Server
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsDatabaseMicrosoft SQL Server

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old April 5th, 2005, 02:27 PM
matt12511's Avatar
matt12511 matt12511 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 36 matt12511 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 m 15 sec
Reputation Power: 5
SQL procedure problem (NOT LIKE '____M')

Hello everyone,

why won't this procedure select everything from Products where
the product code's 5th letter is NOT 'M"

Code:
ALTER	Procedure sp_TextSearchProducts
 
@SearchText varchar(255)
 
AS
 
Select * from Products 
where (chrProductName like '%' + @SearchText + '%' or
txtDescription like '%' + @SearchText + '%' or
chrProductCode like '%' + @SearchText + '%' and
chrProductCode NOT Like '____M')
 
Order by chrProductName


Any Ideas why I am still getting products that have codes ending in M?

thanks,

Matt

Reply With Quote
  #2  
Old April 5th, 2005, 02:50 PM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,776 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 8 h 27 m 42 sec
Reputation Power: 470
Try this
Code:
SELECT * 
FROM Products 
WHERE chrProductName like '%' + @SearchText + '%' 
OR txtDescription like '%' + @SearchText + '%' 
OR 
(
	chrProductCode like '%' + @SearchText + '%' 
	AND CHARINDEX('M', chrProductCode) <> 5)
)

Reply With Quote
  #3  
Old April 5th, 2005, 04:14 PM
matt12511's Avatar
matt12511 matt12511 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 36 matt12511 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 m 15 sec
Reputation Power: 5
I took what you said and seperated them. I just seperated them like this:

Code:
Select * from Products 
where ((chrProductName like '%' + @SearchText + '%' or
txtDescription like '%' + @SearchText + '%' or
chrProductCode like '%' + @SearchText + '%') and
chrProductCode NOT Like '____M')


I seperated the OR's and the AND since the text could be anything including the product code but its not always the product code.

Thanks for the help.

Matt

Reply With Quote
Reply

Viewing: ASP Free ForumsDatabaseMicrosoft SQL Server > SQL procedure problem (NOT LIKE '____M')


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
Stay green...Green IT