Current location: Hot Scripts Forums » Programming Languages » PHP » Is this a too simple query


Is this a too simple query

Reply
  #1 (permalink)  
Old 06-13-04, 12:26 AM
Mailman's Avatar
Mailman Mailman is offline
Newbie Coder
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Is this a too simple query

Hi all, I'm trying to get a result from a simple query. Unfortunatly the result did not come.

Here is the problem:

Say I have a table with 20 records, each of those 4 queries should return 5 records, but only 1 did. 5 records had no value for field1, 5 records had no value for field2, 5 records had no value for field1 and field2 and finally 5 records had value in field2.

select * from table where field1 = ''
select * from table where field2 = ''
select * from table where field1 = '' and field2 = ''
select * from table where field2 <> ''

The last query return me 5 records. All other queries return 0 row no error ???

Note:field1 and field2 are of type varchar

What did I miss I'm clue less

Thanks to anyone that can help!
Reply With Quote
  #2 (permalink)  
Old 06-13-04, 03:17 AM
ArksI's Avatar
ArksI ArksI is offline
Newbie Coder
 
Join Date: Mar 2004
Location: Bulgaria
Posts: 41
Thanks: 0
Thanked 0 Times in 0 Posts
what about

what about the LIKE comparison of varchar-s?
Reply With Quote
  #3 (permalink)  
Old 06-13-04, 08:56 AM
Mailman's Avatar
Mailman Mailman is offline
Newbie Coder
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
thanks i'll give it a try
Reply With Quote
  #4 (permalink)  
Old 06-13-04, 09:02 AM
Mailman's Avatar
Mailman Mailman is offline
Newbie Coder
 
Join Date: Nov 2003
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
I got it working

select * from table where (field1 is null or field1 = '') and (field2 is null or field2 = '')

make the trick, thanks...
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
test if DB query is false? mechphisto PHP 2 12-29-03 08:33 PM
Declared Functions skipper23 PHP 4 12-17-03 10:06 AM
Trouble with query coolblu PHP 1 12-17-03 12:47 AM
index page not showing up skipper23 PHP 3 12-15-03 01:10 PM
Show query results by in a different way mdhall PHP 4 11-09-03 11:18 AM


All times are GMT -5. The time now is 05:02 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.