append to string sqlite code example
Example: concat sqlite
SELECT
FirstName || ' ' || LastName AS FullName
FROM
Employees
ORDER BY
FullName;
SELECT
FirstName || ' ' || LastName AS FullName
FROM
Employees
ORDER BY
FullName;