I want to concatenate two fields: first_name and last_name, where value is equal to ID:
SELECT “First_Name” || ’ ’ || “Last_Name” AS “Full_Name”, * FROM “Unclaimed” WHERE “ID” = :enter_ID;
It shows all fields with empty values. When I removed the where clause, it gave results. Kindly help me