How do I delete from multiple tables using INNER JOIN IN SQL
DELETE t1,t2,t3
FROM Filedata AS t1
INNER JOIN Filepath as t2
INNER JOIN Fileversions as t3 where t3.file_id='0.9067535276368446'
DELETE t1,t2,t3
FROM Filedata AS t1
INNER JOIN Filepath as t2
INNER JOIN Fileversions as t3 where t3.file_id='0.9067535276368446'
0 comments:
Post a Comment