SELECT url, second.rel_id AS user_id
FROM table1
INNER JOIN table2 AS first
ON table1.id=first.rel_id
INNER JOIN table2 AS second
ON first.item_id=second.rel_id
WHERE second.field_id='42'
AND table1.url LIKE '%/:downloadfile'
SELECT url, second.rel_id AS user_id
FROM table1
INNER JOIN table2 AS first
ON table1.id=first.rel_id
INNER JOIN table2 AS second
ON first.item_id=second.rel_id
WHERE second.field_id='42'
AND table1.url LIKE '%/:downloadfile'
Cómo cambiar el color y las fuentes en SQL Server Management Studio (SSMS) - SQL Server / Tutorial TSQL Parte 12
Sistema de gestión de bases de datos relacionales (RDBMS):MSSQL vs MySQL
Crear una aplicación web desde cero usando Python Flask y MySQL:Parte 2
Introducción a las colecciones PL/SQL en Oracle Database