Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
delete table1
from table1 t1
where DateField < (select max(DateField)
from table1 t2
where t1.fld1 = t2.fld2
and t1.fld2 = t2.fld2
and...)