SELECT a.au_fname, a.au_lname, p.pub_name
FROM authors
AS a LEFT OUTER JOIN publishers
AS p
ON a.city = p.city
WHERE a.au_fname =
'Innes
'
ORDER BY p.pub_name ASC, a.au_lname ASC, a.au_fname ASC
No sabría decirte exáctamente la solución porque no estoy muy seguro
![borracho](http://static.forosdelweb.com/fdwtheme/images/smilies/borracho.png)
, pero te pongo un par de ejemplo que funcionan para que te fijes.
Código:
select oficinas.Oficina,Oficinas.Ciudad,Empleados.Nombre,Empleados.Numemp
from Oficinas Left Join Empleados
on Oficinas.Oficina=Empleados.Oficina
where Oficinas.Region='este' and numemp is null
select Oficinas.Oficina,Empleados.nombre,Oficinas.Objetivo
from oficinas left join empleados
on empleados.numemp=Oficinas.Dir
where oficinas.objetivo>600000