这是我的Query
:
如果我知道 BusinessUnitID 我必须传入 where 子句,如下所示的查询,
select * from tblHRIMS_EmployeeDetail
where nvrResignedStatus='No' and nvrBusinessUnit= 'BSU-001'
此查询的结果是:500 行
如果我不知道 BusinessUnitId 我不需要传入 where 子句,如下所示的查询,
select * from tblHRIMS_EmployeeDetail
where nvrResignedStatus='No'
此查询的结果是:1500 行
如何Where
根据给定的输入动态更改子句。
注意:不需要Stored Procedure
,我只需要查询。