Showing posts with label Concatenating strings in an user defined field in sql. Show all posts
Showing posts with label Concatenating strings in an user defined field in sql. Show all posts

Tuesday, February 20, 2024

Concatenating strings in an user defined field in sql

 SELECT
FirstName,
LastName,
Address,
FirstName ||' '|| LastName || ' ' || Address ||','|| City ||' '||State ||' '||PostalCode as [Mailing Address]
from Customer
where
country='USA'