日期:2014-05-18 浏览次数:21195 次
DECLARE @MYVALUE SELECT @MYVALUE=colums from table where ID='1'
------解决方案--------------------
SqlConnection conn = new SqlConnection(STR_DB_CONN); //连接数据库
string strSQL="select colums from table where ID='1'"; //sql语句
conn.Open(); //打开连接
SqlCommand cmd1 = new SqlCommand(strSQL, conn); //执行SQL语句
int id = Convert.ToInt32(cmd1.ExecuteScalar()); //负值给变量
conn.Close(); //关闭连接
不知道能不能满足楼主的要求?