Say for example we have the following table:
Address Line 1 | Address Line 2 | Address Line 3 | Town | Region | Postcode
Is there a way of selecting all rows from this and then returning the row as one string e.g
AddressLine1 + AddressLine 2 + AddressLine 3 etc.....
I apologise if this is a basic question, very new to SQL
+, Oracle uses||, MySQL usesCONCAT(). What RDBMS are you using?