嗨,我想创建一个简单的存储proecudre,它执行以下操作:
Psudocode
@tempSelect = "SELECT * FROM Table" if (@Param is NULL) then exec @tempSelect else exec @tempSelect + ' WHERE id = ' + @Param + '
这种方法有效吗?谢谢.
尝试
select * from table where id=isnull(@param, id)