how can i join between two tables SQL in php code ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

how can i join between two tables SQL in php code ?

hi everyone , i have 2 table (session and activity) in the same database , id_session is a primary key in table session and it is a foreign key in table activity how can i write JOIN between this two tables in PHP is this right ? $sql='SELECT * from activity WHERE activity.id_session=seance.id_session '; $req = mysql_query($sql) or die('Erreur SQL !<br />'.$sql.'<br />'.mysql_error());

29th Jul 2021, 1:14 PM
Ramzi Jebalia
Ramzi Jebalia - avatar
3 Answers
0
NO !! you should elaborate the join type; is it left join or right join or etc for understanding what do i mean check this example: https://www.w3schools.com/sql/sql_join.asp here is an example : $query = "SELECT c.name as category_name, p.id, p.category_id, p.title, p.body, p.author, p.created_at FROM myblog.{$this->table} p LEFT JOIN categories c ON p.category_id = c.id ORDER BY p.created_at DESC "; if you did'nt get that example i'll write it for you
29th Jul 2021, 4:27 PM
Nima
0
NimaPoshtiban this requete return a table ? If yes , for example how can i select the one of his elements For example : $sql='SELECT * from $query WHERE id=5 ' Is that correct?
29th Jul 2021, 5:56 PM
Ramzi Jebalia
Ramzi Jebalia - avatar
0
NO ,this is not a correct sql syntax
29th Jul 2021, 8:32 PM
Nima