You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/sql/Joins/Write a SQL statement to ma...

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;