Using Dreamweaver CS5 / MySQL
I\'m trying to set up a query that will display rows of data but only if a specific column has data in it. If the Charname column is bl
You could use COALESCE() to treat blank (empty string) and NULL as the same thing:
COALESCE()
NULL
SELECT * FROM users WHERE COALESCE(Charname, '') != ''
You never told us what "empty" actually means, but a good guess would be empty string or NULL.