I have sample data with following address fields,
billing_address | billing_city | billing_state | country |
---|---|---|---|
12345 216 Street, Suite. A | Lynwood | Washington | USA |
The goal is to get the address in following format;
Expected Output
12345 216 Street, Suite A
Lynwood, Washington
USA
here is my sql code for it;
select billing_address & BR()
& billing_city & ", "
& billing_state & BR()
& billing_country
from temp_data
I am getting the following error;
Error: invalid identifier '", "'
Can I kindly get some help on how to fix it? thanks