im trying to concatenate 3 columns in a select query to show in one column in the results. the column is called DelPostalName and for some reason always shows a \'0\' when i run
You should use CONCAT (as a few people have mentioned) like this:
CONCAT
CONCAT(isc_orders.ordShipFirstName,' ', isc_orders.ordshiplastname,' ', isc_orders.ordshipcompany) AS DelPostalName