Answer the question
In order to leave comments, you need to log in
How to merge two tables that are linked by one another?
I'm doing a MySQL lab.
In the first task, you need to display the names of the students and the names of the corresponding streets. It's easy:
SELECT `dannie`.`fam`, `ulica`.`nazvanie`
FROM `dannie` RIGHT OUTER JOIN `ulica` ON `dannie`.`kod_ulica` = `ulica`.`kod_ulica`
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question