“gemeinsame Anfrage” Code-Antworten

gemeinsame Anfrage

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

gemeinsame Anfrage

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

Ähnliche Antworten wie “gemeinsame Anfrage”

Fragen ähnlich wie “gemeinsame Anfrage”

Weitere verwandte Antworten zu “gemeinsame Anfrage” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen