--Write a SQL query to fetch “FIRST_NAME” from the Student table in upper case and use ALIAS name as STUDENT_N select upper(First_name) as STUDENT_N --Write a SQL ...