If I get this right:
DELETE tbl
WHERE LoadedDate < (SELECT convert(char(6), MAX(convert(int, LoadedDate)) - 100) FROM tbl
That is, convert the highest value of LoadedDate to integer, deduct 100 to go back one year.
(This is a little shortcut, and would not work well if the limit was 15 or 18 months.)