+ 1
¿Cómo puedo utilizar Insert e Inner Join. En sql?
Podrias colocar un ejemplo
2 Respostas
+ 4
Puedes crear una tabla temporal con una subconsulta y luego haces tú insert con los valores de tu temporal
+ 2
You can't use them together, but you can use a subquery with a select and inner join to generate data for the insert statement. However, it may be platform-dependent (different syntax for each RDBMS).