Tengo dos tablas. Ambos contienen el campo de identificación de la pregunta. Quiero obtener todos los registros de la primera tabla que no están presentes en la segunda. No quiero utilizar la restricción "NO EN" como segunda tabla con más de 400000 registros.SQL join ON no igual en Mysql
11
A
Respuesta
15
intentar algo así como
SELECt t1.*
FROM Table1 t1 LEFT JOIN
Table2 t2 ON t1.questionID = t2.questionID
WHERE t2.questionID IS NULL
2
intento:
select from t1
right join t2 on t2.id = t1.id where t2.id is null
4
Normalmente, usted podría hacer esto utilizando una LEFT JOIN
combinada con una cláusula WHERE
seleccionar cada fila en la que la tabla unida no devuelve ningún resultado.
SELECT t1.*
FROM Table1 t1
LEFT OUTER JOIN Table2 t2 ON t2.ID = t1.ID
WHERE t2.ID IS NULL
Cuestiones relacionadas
- 1. SQL JOIN: ON vs Igual
- 2. mysql delete on join?
- 3. Cuándo utilizar SQL natural join en lugar de join .. on?
- 4. Consulta SQL para "concatenate on join"
- 5. SQL join: where cláusula vs. on cláusula
- 6. SQL Join on Nearest than than date
- 7. No es igual en SQL
- 8. En SQL/MySQL, ¿cuál es la diferencia entre "ON" y "WHERE" en una instrucción join?
- 9. LINQ Join On Between Clause
- 10. MySQL Slow on join. Cualquier forma de acelerar
- 11. MySQL INNER JOIN Alias
- 12. MySQL left join no funciona con la palabra clave AS
- 13. mysql join with limit 1
- 14. MySQL - LEFT JOIN y COUNT()
- 15. SQL Inner Join. Condición ON frente a la cláusula WHERE
- 16. INNER JOIN vs LEFT JOIN rendimiento en SQL Server
- 17. Diferencia entre "on .. and" y "on .. where" en SQL Left Join?
- 18. SQLAlchemy - order_by on relationship for join table
- 19. SQL INNER JOIN pregunta
- 20. es 'LEFT OUTER JOIN' equivale a 'Join' en Microsoft SQL
- 21. linq join on guid and string column
- 22. cláusula WHERE vs ON cuando utilice JOIN
- 23. Simple SQL Join Understanding?
- 24. MySQL OUTER JOIN Error de sintaxis
- 25. Hibernate Excepción en MySQL Cross Join Query
- 26. mysql join query using like?
- 27. MySQL JOIN con condiciones IF
- 28. MySQL join with where cláusula
- 29. MySQL: GROUP_CONCAT con LEFT JOIN
- 30. MySQL no usar índice con JOIN, WHERE y ORDER