Hi everybody!
Is there a way to exclude in a list of results those rows that are empty. I know that maybe with a conditional but I`m not really sure the syntaxis or if there is an Exclude mysql instruction.
Any Help I Appreciate A Lot
Well in general if the row is empty then MySQL won't return it.
However you can use a WHERE clase like:
WHERE id IS NOT NULL
or something similar, depending on the data that you are working with.