varias unir tipos tablas relacionadas left inner hacer ejemplos consultar consulta con como sql inner-join

unir - tipos de join sql



SQL Inner une más de dos tablas (10)

Actualmente puedo consultar la combinación de dos tablas sobre la igualdad de una clave externa / principal de la siguiente manera.

$result = mysql_query("SELECT * FROM `table1` INNER JOIN `table2` ON table1.primaryKey=table2.table1Id");

Me gustaría extender esto a varias tablas (todas con las mismas claves foráneas). Estoy intentando el siguiente código que no devuelve nada. ¿Alguien puede señalar lo que estoy haciendo mal?

$result = mysql_query("SELECT * FROM `table1` INNER JOIN `table2` INNER JOIN table3 ON table1.primaryKey=table2.table1Id=table3.table1Id");


Pruebe esto Aquí la sintaxis es

SELECT table1 .columnName, table3 .columnName FROM table1 inner join table2 ON table1.primarykey = table2.foreignkey inner join table3 ON table2.primarykey = table3.foreignkey

por ejemplo: Select SalesHeader.invoiceDate,ActualSales,DeptName,tblInvDepartment.DeptCode ,LocationCode from SalesDetail Inner Join SalesHeader on SalesDetail.InvoiceNo = SalesHeader.InvoiceNo inner join tblInvDepartment on tblInvDepartment.DeptCode = SalesDetail.DeptCode


Aquí hay una sintaxis de consulta SQL general para unir tres o más tablas. Esta consulta SQL debería funcionar en todas las principales bases de datos de relaciones, por ejemplo, MySQL, Oracle, Microsoft SQLServer, Sybase y PostgreSQL:

SELECT t1.col, t3.col FROM table1 join table2 ON table1.primarykey = table2.foreignkey join table3 ON table2.primarykey = table3.foreignkey

Primero nos unimos a la tabla 1 y la tabla 2, que producen una tabla temporal con datos combinados de la tabla 1 y la tabla 2, que luego se unen a la tabla 3. Esta fórmula se puede extender por más de 3 tablas a N tablas. Solo necesita asegurarse de que la consulta SQL tenga una declaración de combinación N-1 para unir N tablas. como para unir dos tablas, se requiere 1 declaración de unión y para unir 3 tablas, necesitamos 2 declaraciones de unión.


Encuentre la combinación interna para más de 2 tablas aquí

Aquí hay 4 nombres de tablas como

  1. Pedidos
  2. Clientes
  3. Estudiante
  4. Conferencista

Entonces el código SQL sería:

select o.orderid, c.customername, l.lname, s.studadd, s.studmarks from orders o inner join customers c on o.customrid = c.customerid inner join lecturer l on o.customrid = l.id inner join student s on o.customrid=s.studmarks;


La sintaxis correcta es como:

SELECT * FROM table1 INNER JOIN table2 ON table1.primaryKey = table2.ForeignKey INNER JOIN table3 ON table3.primaryKey = table2.ForeignKey

La última línea de Orthe que une Table3 en Table1 es como:

ON table3.ForeignKey= table1.PrimaryKey


Una posible solución:

select Company.Company_Id,Company.Company_Name, Invoice_Details.Invoice_No, Product_Details.Price from Company inner join Invoice_Details on Company.Company_Id=Invoice_Details.Company_Id inner join Product_Details on Invoice_Details.Invoice_No= Product_Details.Invoice_No where Price=''70000'';


pruebe con este método que figura a continuación, modifíquelo según sus necesidades.

SELECT employment_status.staff_type, COUNT(monthly_pay_register.age), monthly_pay_register.BASIC_SALARY, monthly_pay_register.TOTAL_MONTHLY_ALLOWANCES, monthly_pay_register.MONTHLY_GROSS, monthly_pay_register.TOTAL_MONTHLY_DEDUCTIONS, monthly_pay_register.MONTHLY_PAY FROM (monthly_pay_register INNER JOIN deduction_logs ON monthly_pay_register.employee_info_employee_no = deduction_logs.employee_no) INNER JOIN employment_status ON deduction_logs.employee_no = employment_status.employee_no WHERE monthly_pay_register.`YEAR`=2017 and monthly_pay_register.`MONTH`=''may''


SELECT * FROM table1 INNER JOIN table2 ON table1.primaryKey=table2.table1Id INNER JOIN table3 ON table1.primaryKey=table3.table1Id


SELECT eb.n_EmpId, em.s_EmpName, deg.s_DesignationName, dm.s_DeptName FROM tbl_EmployeeMaster em INNER JOIN tbl_DesignationMaster deg ON em.n_DesignationId=deg.n_DesignationId INNER JOIN tbl_DepartmentMaster dm ON dm.n_DeptId = em.n_DepartmentId INNER JOIN tbl_EmployeeBranch eb ON eb.n_BranchId = em.n_BranchId;


select * from Employee inner join [Order] On Employee.Employee_id=[Order].Employee_id inner join Book On Book.Book_id=[Order].Book_id inner join Book_Author On Book_Author.Book_id=Book.Book_id inner join Author On Book_Author.Author_id=Author.Author_id;


select WucsName as WUCS_Name,Year,Tot_Households,Tot_Households,Tot_Male_Farmers from tbl_Gender INNER JOIN tblWUCS ON tbl_Gender.WUCS_id =tblWUCS .WucsId INNER JOIN tblYear ON tbl_Gender.YearID=tblYear.yearID

Hay 3 tablas 1. tbl_Gender 2. tblWUCS 3. tblYear