presuming we have a table called test(test1 varchar, test2 varchar)
data:
1,2
2,3
3,4
4,5
5,6
if I insert data twice:
1,2
2,3
3,4
4,5
5,6
1,2
2,3
3,4
4,5
5,6
when I select … first record (1,2) and I delete it using delete button (Delete selected row(s))
the record 1 is deleted of course … and also record nr 6 (1,2)
the same thing happends for all records
thank you
Mirel