“Consulta conjunta” Respostas de código

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

Respostas semelhantes a “Consulta conjunta”

Perguntas semelhantes a “Consulta conjunta”

Mais respostas relacionadas para “Consulta conjunta” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código