If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Select % not working for mysqlcc?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-13-04, 13:35
danielnwa danielnwa is offline
Registered User
 
Join Date: Feb 2004
Posts: 5
Select % not working for mysqlcc?

Hi all,

I am having a little trouble with using the % in my query. When I do a query like this

SELECT *
FROM windowevents2 where ComputerName = 'Lab01' and
Datetime = '%'

I get a return of empty set

But when I use this query

SELECT *
FROM windowevents2 where ComputerName = 'Lab01' and
Datetime = 'Tue Feb 10 15:30:30 2004'

I do get all the results for that search date. Any insight on why this is so? Thanks for any help.
Reply With Quote
  #2 (permalink)  
Old 02-14-04, 09:23
ika ika is offline
Registered User
 
Join Date: Oct 2003
Location: Slovakia
Posts: 482
Re: Select % not working for mysqlcc?

Quote:
Originally posted by danielnwa
Hi all,

I am having a little trouble with using the % in my query. When I do a query like this

SELECT *
FROM windowevents2 where ComputerName = 'Lab01' and
Datetime = '%'

I get a return of empty set

But when I use this query

SELECT *
FROM windowevents2 where ComputerName = 'Lab01' and
Datetime = 'Tue Feb 10 15:30:30 2004'

I do get all the results for that search date. Any insight on why this is so? Thanks for any help.
Correct query is:

SELECT *
FROM windowevents2 where ComputerName = 'Lab01' and
Datetime like '%'
Because when you use "=" then the column must have exact entry.
Reply With Quote
  #3 (permalink)  
Old 02-17-04, 23:46
danielnwa danielnwa is offline
Registered User
 
Join Date: Feb 2004
Posts: 5
Thank you very much for ur help.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On