我在AX的一份工作中有以下声明:
select RecId from pjiTable
join pID, Type, PrId from sjTable
where pjiTable.Prid == sjTable.PrId &&
(sjTable.Type == PjType::TimeMaterial || sjTable.Type == PjType::FixedPrice);
Run Code Online (Sandbox Code Playgroud)
我必须在SQL Server中使用它.如何将此select语句转换为SQL并在SQL Server Management Studio中使用它?