Escrito por Soporte Incared
Buscar dato en tabla
select w.* from [database].[dbo].[tabla1$] as w
where w.Apellido_Paterno='DIAZ';
Comparar igualdad en columnas dni de 2 tablas
SELECT w.*, r.*
from [database].[dbo].rh as w, [database].[dbo].personal as r
where w.dni = r.dni
Verificar que datos no existan en tabla
select *
from [data].[dbo].[datos$] as w
where not exists (select 1 from [data].[dbo].datos2$ as r where w.nombre_completo = r.nombreapellido)