LEFT JOIN | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

LEFT JOIN

LEFT JOIN You are working at a bookstore and have the following tables: authors: id authorname 1 bruce eckel 2 robert lafore 3 andrew tanenbaum books: id authorid bookname 1 3 Modern Operating System 2 1 Thinking in Java 3 3 Computer Architecture 4 1 Programming in Scala Write a query to output all authors and the books they wrote in one table (authorname-bookname). im stuck at this question, help please

15th Dec 2021, 6:24 AM
Kyle Sabat
Kyle Sabat - avatar
2 Respostas
+ 2
Where is your query?
15th Dec 2021, 6:50 AM
AĶ¢J
AĶ¢J - avatar
+ 1
This is the query you were asking: SELECT authors.authorname, books.bookname FROM authors LEFT JOIN books ON authors.id = books.authorid
20th Dec 2021, 3:53 PM
Alrafe
Alrafe - avatar