Sobes.tech

There is a table Clients and a table Orders, which can be linked through the ClientId field. What JOINs should be written to obtain the following results? a. Records of all clients and orders, regardless of whether clients have orders select * from Clients left join Orders on Clients.ClientId = Orders.ClientId d. Records only about those clients and orders if clients have orders select * from Clients inner join Orders on Clients.ClientId = Orders.ClientId

119

d. Records only about clients and orders if clients have orders select * from Clients inner join Orders on Clients.ClientId = Orders.ClientId g. Clients with more than 10 orders select * from Clients inner join Orders on Clients.ClientId = Orders.ClientId

111
/3