SELECT concat(first_name,last_name) AS full_name from customer
ORDER BY length(full_name);
I tried to run this in postgre sql database. I give me this erro
[42703] ERROR: column "full_name" does not exist
How would I resolve this? Order rows by length of full name.