is it possible to query a column that has some value? in other words if the value is blank then dont choose
so i want to choose all items from descript1 that have some sort of valueCode:SELECT * FROM tableName WHERE descript1 NOT LIKE ' ';
is it possible to query a column that has some value? in other words if the value is blank then dont choose
so i want to choose all items from descript1 that have some sort of valueCode:SELECT * FROM tableName WHERE descript1 NOT LIKE ' ';
Should do the trick.Code:SELECT * FROM tableName WHERE descript1 IS NOT NULL AND descript1 != ''
ggalan (10-26-2010)
Bookmarks