当我想要特定用户的数据时,下面是查询的 where 子句
where Completion_Date>= '11/01/2011'
and Completion_Date<= '12/11/2012'
and System_user_id = 1234
当我想为所有用户提取数据时,下面是 where 子句:
where Completion_Date>= '11/01/2011'
and Completion_Date<= '12/11/2012'
由于我不想要 2 个单独的查询,有没有办法在 where 子句中添加条件,以便我可以使用单个查询并根据输入(即 System_user_id)决定是否在查询中添加额外的条件。当我想要所有用户的数据和特定用户的 system_user_id 将被发送时,我将发送 -1。