Forum Discussion
Anonymous
4 years agoNot applicable
select * from database where id IN ( select * from database where id is not null )
Hello everyone! Good morning! I would like to know how to use the IN followed by SELECT in the Power Query of Power Bi using ODBC. I created this table in the data base to facilitate my ID's upda...
AlexisOlson
Super User
4 years agoDoes it work with an inner join?
select distinct a.id
from datamart.d_user a inner join
datamart.usuarios b on b.id = a.id
where b.id is not null