Se ho questo - tadd è la Address
tabella:
CONCAT(tadd.street_number, ' ',
tadd.street_name,', ',
tadd.apt_number,', ',
tadd.city,', ',
tadd.postal_code,', ',
tadd.country) AS 'Address'
C'è un modo per escludere apt_number se non esiste?
Stavo pensando a:
WHERE tadd.apt_number IS NOT NULL
Ma restituirà solo quelle righe con apt_number
, e anche se qualcosa funziona come posso fare con quella virgola extra.
Se è un duplicato, inserisci un link nei commenti.