This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function(){alert("hoge".length);})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| delete from <table> t1 | |
| where t1.<someid> is not null | |
| and t1.<pk> > ( | |
| select min(t2.<pk>) | |
| from <table> t2 | |
| where (t1.<someid> = t2.<someid> or (t1.<someid> is null and t2.<someid> is null)) | |
| and t1.<fooid> like 'XXX%' | |
| having count(*) > 1 | |
| ); |
NewerOlder