SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start


From course:

Computer Science AQA A level

» Start this Course
(Practice similar questions for free)
Question:

SQL How would you compare and return matching data from more than one table

Author: Will Parker



Answer:

SELECT Table1.ColumnX, Table2.ColumnY, Table2.ColumnX, ... FROM Table1, Table2, ... WHERE Table1.ColumnZ = Table2.ColumnZ The selct is whats going to be printed as a new table The from is just every table you want to use The where is the condtion on whats selected


0 / 5  (0 ratings)

1 answer(s) in total