Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   PHP / mySQL (http://siteownersforums.com/forumdisplay.php?f=10)
-   -   What is Join operation.? (http://siteownersforums.com/showthread.php?t=145006)

Thomasklinger 09-03-2014 12:55 AM

What is Join operation.?
 
What is Join operation.?

george.web13 09-08-2014 01:20 AM

Join operation, is an operator that JOIN the data between Tables of database.
There is INNER JOIN, OUTER JOIN, LEFT JOIN, RIGHT JOIN, all with different purposes.

tulipviolet 09-12-2014 02:50 AM

join operation used to join the table in the database
left join
right join
full join
inner join
outer join

exp;--SELECT Orders.OrderID, Customers.CustomerName, Orders.OrderDate
FROM Orders
INNER JOIN Customers
ON Orders.CustomerID=Customers.CustomerID;

johnstyle 09-16-2014 11:04 PM

Join operation is used in SQL to return rows from multiple tables where the condition is met.


All times are GMT -7. The time now is 05:01 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.