PHP MySQL masaya katılmak

2 Cevap php
$sql = "SELECT logs.full_name, logout.status FROM logs, logout WHERE logs.employee_id = logout.employee_id";
tables --> logs
           logout

I'm having error on this. I search join tables in google. And that's what I got. What is wrong with this code?

2 Cevap

Ben bir yerde sorguda "JOIN" görmüyorum.

Doğru sözdizimi:

SELECT logs.full_name, logout.status FROM logs
    LEFT JOIN logout ON (logs.employee_id = logout.employee_id);

Here is a nice little visual explanation SQL genel Katıldı. Ben bana yardımcı gibi sizin kadar yardımcı olacağını umuyoruz.