select c.name from customers as c
inner join legal_person as l on c.id=l.id_customers;
inner join legal_person as l on c.id=l.id_customers;
I am Md Abdullah Al Hasan. I have completed my graduation in Computer Science and Engineering from Jashore University of Science and Technology.
SELECT c.name
ReplyDeleteFROM customers c INNER JOIN legal_person l ON
c.id = l.id_customers