Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が使用するコードは次のとおりです。
DELETE FROM db1.table1 WHERE db1.table1.Timestamp = db2.table2.Timestamp;
ステートメントをまったく準備できません。それは私を夢中にさせています!
これを試して
DELETE from db1.table1 WHERE db1.table1.Timestamp IN( SELECT Timestamp FROM db2.table2) ;
と一致するすべてのレコードを削除しdb1.table1ますdb2.table2
db1.table1
db2.table2