In my SQL database, I have a query that is designed to make display names of the data. It is combining several columns from the table into one field with the following code:
SELECT "ID" || '-' || "Name" || '-' || "Tag Ear" || '-' || "Tag Color" || '-' || "Tag #" FROM "Stock"
It is working well except that not every row in the table has data in the “Name” field. In those cases those rows do not display in the query.
Is there a way to add a space or some sort of placeholder for those instances in order to still display the rest of the information?
Thank you