I have MySQL MyISAM table:
Table friends(id, friend_id):
1, 5
5, 1
2, 6
6, 2
3, 7
How to delete reverse records? If for record values «1, 5» exist record with values «5, 1» i need to delete «5, 1».
Thanx for help!
|
I have MySQL MyISAM table: Table friends(id, friend_id): 1, 5 5, 1 2, 6 6, 2 3, 7 How to delete reverse records? If for record values «1, 5» exist record with values «5, 1» i need to delete «5, 1». Thanx for help! |
||||
|
|
EDIT A bit nicer syntax would be:
But execution time is the same. As well, I've created this small script for a quick & dirty benchmark. Results: No index: Dalen: 600 => 400 rows. Time: 0.0274 Mark: 600 => 400 rows. Time: 0.4323 Frosty: 600 => 400 rows. Time: 0.4081 Nick: 600 => 400 rows. Time: 0.3201 Separate index on columns Dalen: 600 => 400 rows. Time: 0.0201 Mark: 600 => 400 rows. Time: 0.0095 Frosty: 600 => 400 rows. Time: 0.0059 Nick: 600 => 400 rows. Time: 0.3257 Unique index on Dalen: 600 => 400 rows. Time: 0.0168 Mark: 600 => 400 rows. Time: 0.0057 Frosty: 600 => 400 rows. Time: 0.0041 Nick: 600 => 400 rows. Time: 0.3209 Conclusions:
|
|||||||||||
|
|
Try this:
The join is more efficient than other approaches if the friends table is very large. EDIT: I fixed the "create...select" statement above. Tested it, works ok. Sorry about that! |
||||
|
|
|
||||
|
|
|
|||||
|
|