Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: delete repeating rows

    HI , JUST TRY TO THIS

    alter table <TABLENAME> add gid timestamp

    delete from <TABLENAME> where gid not in(select max(gid) from <TABLENAME> group by Field1,Field2)

    alter table <TABLENAME> drop column gid

    Note: Field1,Field2 are...

Viewing post 1 (of 1 total)