To select only year from date in SQL, you can use the YEAR() function in MySQL.
Here is an example SQL:
SELECT YEAR(your_date_column) FROM your_table;