- 3
Join table
how ?
7 ответов
0
to display data from two table, i
+ 3
It is explained in the lesson, in these chapters:
https://www.sololearn.com/learn/SQL/1865/
https://www.sololearn.com/learn/SQL/1866/
+ 2
just do this
Select * from "name of both tables separated by comma."
+ 1
SELECT * FROM Meeting_Employees ME
join Meeting_Details MD on MD.MeetingID=ME.MeetingID
where ME.MeetingID=2
+ 1
i try,
thanks bro.
0
please elaborate
0
have a lot of kind of join. you can search about inner join, left join, right join, full outer join... to make understanding more than.