14. List the title and year of all movies, but for the years, display only the last 2 digits in the year. For example, 1999 will be displayed as 99, 2010 will be displayed as 10, and so on. Hint: You can apply a function to one of the columns. For example:
- Without using function: SELECT title, year FROM movie;
- Using a function: SELECT title, FUNCTION(year) FROM movie;