programming-examples/sql/Joins/Write a SQL statement to make a join on the tables salesman, customer and orders in such a form that the same column of each table will appear once and only the relational rows will come.sql
2019-11-18 14:05:53 +01:00

6 lines
273 B
SQL

/*Write a SQL statement to make a join on the tables salesman, customer and orders in such a form that the same column of each
table will appear once and only the relational rows will come.*/
SELECT *
FROM orders
NATURAL JOIN customer
NATURAL JOIN salesman;