Write a query to display the name of employee whose name contains 'T' as the last alphabet.
SELECT ENAME FROM empl WHERE ENAME LIKE '%T' ;
+-------+ | ENAME | +-------+ | SCOTT | +-------+