Q:

inner join


SELECT column_name(s)

FROM table1

INNER JOIN table2
 ON table1.column_name = table2.column_name;
 
0
SELECT column_name(s)
FROM table1
INNER JOIN table2
ON table1.column_name = table2.column_name;
4
INNER JOIN: Only some portion of the tables which is matching.
Inner join eliminates if there is no match.
0

  SELECT Orders.OrderID, Customers.CustomerName, Shippers.ShipperName
FROM 
  ((Orders
INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID)

  INNER JOIN Shippers ON Orders.ShipperID = Shippers.ShipperID); 
-1

New to Communities?

Join the community