0
ExcelスタジオでSQL Serverのインポートとエクスポートウィザードを使用してソースクエリを提供するため、エクセルファイルからデータを1つのテーブルにインポートしようとしています。以下のクエリを入力した後で解析をクリックすると、このSQL文はクエリではありません。このSQL文はクエリではありません。インポートウィザード
select
u.UserID, m.IMManagementPlatformID, s.Username
from
([Sheet1$] s
inner join
dbo.wmcTBLUsers u on u.Firstname = s.Firstname
and u.Lastname = s.Lastname)
inner join
IMManagementPlatform m on m.IMManagementPlatformName = s.IMManagementPlatformName
where
u.IsActive = 1
and u.Firstname <> 'First'
and u.Lastname <> 'Last'