mirror of
https://github.com/simon987/od-database.git
synced 2025-04-19 10:26:44 +00:00
6 lines
254 B
SQL
6 lines
254 B
SQL
SELECT Website.url, WebsitePath.path, File.name, File.size, MT.mime
|
|
FROM File
|
|
INNER JOIN WebsitePath on File.path_id = WebsitePath.id
|
|
INNER JOIN Website on WebsitePath.website_id = Website.id
|
|
INNER JOIN FileType MT on File.mime_id = MT.id;
|