本文介绍了运行字符串查询并将其答案存储在其他变量中,并在其上应用条件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在sql server 2005中,使用带有字符串查询的存储过程

我的问题是我必须运行字符串查询并将其答案存储在其他int或字符串变量中,并在其上加上条件

例如

In sql server 2005 using store procedure with string query

My problem is that I have to run string query and store its answer to other int or string variable and put condition on it

e.g.

DECLARE @P_GetTableQuery VARCHAR(500)

SET @P_GetTableQuery =  (''SELECT COUNT(*)  FROM  ''+  @P_tableName + ''	WHERE ee_nEmployee = '' + @P_ee_nEmployee)


if @P_GetTableQuery =0
begin
  do this
end
else
begin
 do this
end



这个怎么做?需要帮助.



How to do this? Need help.

推荐答案



这篇关于运行字符串查询并将其答案存储在其他变量中,并在其上应用条件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 06:11