“Wspólne zapytanie” Kod odpowiedzi

Wspólne zapytanie

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

Wspólne zapytanie

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

Odpowiedzi podobne do “Wspólne zapytanie”

Pytania podobne do “Wspólne zapytanie”

Więcej pokrewnych odpowiedzi na “Wspólne zapytanie” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu