Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a query in SQL where I need to add a condition, to find all the records that have an empty field.

This gave me an error..

SELECT forma.*, SMS_MONTIME.IDTICKET, SMS_MONTIME.MBYLLUR,SMS_MONTIME.time_added
FROM forma 
LEFT JOIN SMS_MONTIME ON forma.ID = SMS_MONTIME.IDTICKET WHERE SMS_MONTIME.IDTICKET ==''

Thanks

share|improve this question
Change =='' to ='' just one '=' sign, or use the datalength function as explained here: stackoverflow.com/a/33425/752527 – Hanlet Escaño Dec 18 '12 at 9:30

4 Answers

up vote 0 down vote accepted

In query use just = for checking not == and for checking null values use is null

SELECT forma.*, SMS_MONTIME.IDTICKET, SMS_MONTIME.MBYLLUR,SMS_MONTIME.time_added
FROM forma 
LEFT JOIN SMS_MONTIME ON forma.ID = SMS_MONTIME.IDTICKET WHERE SMS_MONTIME.IDTICKET ='' or SMS_MONTIME.IDTICKET is null
share|improve this answer
Thank you that worked, how can i find now, values that are not empty? – ossial Dec 18 '12 at 9:34
is not null for null values and != for non null values probably – senk Dec 18 '12 at 9:36
1  
Thank you for the answer :) I'm accepting it in a few minutes! – ossial Dec 18 '12 at 9:37

Try this:

...
WHERE SMS_MONTIME.IDTICKET = '' OR SMS_MONTIME.IDTICKET IS NULL

The issue is, what does "blank" mean: '' or null or more usually both

Also, use = not == (I've never actually tried ==, but I've never seen anyone else either, so it can't be good)

share|improve this answer

try this

"SELECT 
 forma.*, SMS_MONTIME.IDTICKET, SMS_MONTIME.MBYLLUR,SMS_MONTIME.time_added
  FROM forma 
  LEFT JOIN 
   SMS_MONTIME ON forma.ID = SMS_MONTIME.IDTICKET WHERE SMS_MONTIME.IDTICKET =''"

or try this

 WHERE SMS_MONTIME.IDTICKET is null

for not null use

WHERE SMS_MONTIME.IDTICKET is not null
share|improve this answer

to check an empty field, i.e NULL field one can't use =. U have to use the IS NULL Your query should be like this

SELECT forma.*, SMS_MONTIME.IDTICKET, SMS_MONTIME.MBYLLUR,SMS_MONTIME.time_added
FROM forma 
LEFT JOIN SMS_MONTIME ON forma.ID = SMS_MONTIME.IDTICKET 
WHERE SMS_MONTIME.IDTICKET IS NULL
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.