“consulta conjunta” Código de respuesta

consulta conjunta

SELECT table1.column1,table1.column2,table2.column1,....
FROM table1 
LEFT JOIN table2
ON table1.matching_column = table2.matching_column;


table1: First table.
table2: Second table
matching_column: Column common to both the tables.
faheem

consulta conjunta

SELECT StudentCourse.COURSE_ID, Student.NAME, Student.AGE FROM Student
INNER JOIN StudentCourse
ON Student.ROLL_NO = StudentCourse.ROLL_NO;
faheem

Respuestas similares a “consulta conjunta”

Preguntas similares a “consulta conjunta”

Más respuestas relacionadas con “consulta conjunta” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código