A close reading of
https://developers.google.com/fusiontables/docs/v2/sql-referenceresulted in very little in the way of date formatting functions on the Fusion Tables platform.
(You get what you pay for.)
However, if you get the dates in the form MM/DD/YYYY you can use the AI2
text SEGMENT and JOIN blocks to extract and recombine the parts you want
after the results arrive from Fusion Tables.
So YYYY would be SEgMENT('MM/DD/YYYY',from position 7,for a length of 4)
(I am working from memory, double check the segment block tool tip to be sure.)
If you want to SELECT only a particular year 2016 from Fusion Tables,
code a SELECT ... from <tableID> where MyDate >= 1/1/2016 AND MyDate <= 12/31/2016
(give or take an apostrophe or two, see what works.)
ABG