站内搜索: 请输入搜索关键词
当前页面: 图书首页 > MySQL Tutorial

MySQL Tutorial

[ Directory ] Previous Section Next Section

Answers

Quiz

A1:

a

A2:

c

A3:

b

A4:

d

A5:

c


Exercises

A1:

select name, skill
from employee, employeeSkills
where employee.employeeID = employeeSkills.employeeID;

A2:

select client.clientID, name
from client left join assignment
on client.clientID = assignment.clientID
where employeeID is NULL;

A3:

select clientID, name
from client
where not exists
         (select *
          from assignment
          where assignment.clientID = client.clientID);


    [ Directory ] Previous Section Next Section