You are on page 1of 1

6,11 16

select name,CONCAT(ADDRESS,',',CITY,',',STATE,',',COUNTRY) "customer_details" from


customer
order by name asc;

agrigold123

select name from customer where name in


(select max(length(name)) from customer)
order by name;

You might also like