, , , .
. .
, , , - IGNORE, , , . , . , .
-. , "my_table", - my_mey_column, :
delete from my_table where my_key_column not in (select min(my_key_column) from my_table group by Entry_Date)
: - mysql, @a_horse_with_no_name
:
create temporary table if not exists tmp_posting_data select id from posting_data where 1=2
insert into tmp_posting_data(id) select min(id) from posting_data group by Entry_Date
delete from Posting_Data where id not in (select id FROM tmp_posting_data)
, @a_horse_with_no_name. , , , :
Alter table posting_data add unique key (Entry_Date)
, RSS, "insert" "insert" "replace", ,
replace into posting_data (......) values(.....)