combobox.items.add('1998年以前');
combobox.items.add('1998-1999年');
...
combobox.items.add('2003年以后');sql的写法:(大致的意思,你自己根据具体情况改吧)
if combobox.text='1998年以前' then 
 select fieldname(s) from tablename where ... and yearfield<1998
if combobox.text='1998-1999年' then
 select fieldname(s) from tablename where ... and yearfield is between (1998 and 1999)...