Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
create table temp_table like ORIGINAL_TABELLE;
insert into temp_table select * from ORIGINAL_TABELLE group by feld1, feld2;
truncate table ORIGINAL_TABELLE;
insert into ORIGINAL_TABELLE select * from temp_table;
drop table temp_table;