vote up 0 vote down star

I need to put a Case in the Select to check if the Data I'm adding to my view is NULL, in which case I want it to just enter a zero, or not.

flag
I am confused. You can not, to my knowledge, add or update information in the database in a SELECT. Do you mean return 0. And I am unsure what you mean by the 'or not' bit. Can you please provide some more information. – MitMaro Jul 23 at 22:38

3 Answers

vote up 0 vote down check

You mean something like this?

SELECT IF(`field` IS NULL, 0, `field`)...

There's also "IFNULL()":

SELECT IFNULL(`field`, 0)...
link|flag
this is a classic case of misusing IF() and IFNULL() where the more generally accepted COALESCE() is a better idea. – longneck Jul 24 at 20:20
vote up 2 vote down
select coalesce(field, 0) as 'field' from v;

(doc)

link|flag
vote up 1 vote down

When creating your table just add NOT NULL to the column description, e.g.

CREATE TABLE ( ID INT NOT NULL default '0' );

Then if no data is given for the field it is set to the default value of 0 which will be retrieved when you run a SELECT query.

link|flag
this doesn't apply if, for example, the NULL is the result of a LEFT OUTER JOIN. – longneck Jul 24 at 20:21

Your Answer

Get an OpenID
or

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