当前位置:首页 » 编程语言 » sql查询语句赋值
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

sql查询语句赋值

发布时间: 2022-01-12 09:35:27

sql查询出语句的结果 赋值给变量

呵,不是太麻烦的用Reader可以实现,给你个小例子:

SqlConnection conn = new SqlConnection("Server=(local);DataBase=tmp;Uid=sa;Pwd=1122");
SqlDataReader r ;
SqlCommand cmd = new SqlCommand("select count(*) from table1",conn);
conn.Open();
r = cmd.ExecuteReader();
if (r.Read()) //如果sql查询到了数据
MessageBox.Show(r.GetInt32(0).ToString());
conn.Close();

如果还不明白发消息给我。

Ⅱ SQL查询结果如何赋值

select sum(a.ten) as '10岁',sum(a.twenty) as '20岁' from
(select count(*) ten,0 twenty
from humanmain
where hmage=10
union
select 0,count(*)
from humanmain
where hmage=20) a

Ⅲ sql语句查询的时候把变量赋值进去

declare @para varchar(200)
set @para=....
在查询语句里面带入这个参数

Ⅳ 如何把sql语句查询到的值赋值给变量

//多行
System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection("server=.;database=你的数据库的名字;uid=sa;pwd=sa的密码;");
System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand();
cmd.Connection = conn;
cmd.CommandText="select 字段A from 表B where years=2000 and months=2";
conn.Open();
System.Data.SqlDataAdapter sda=new System.Data.SqlDataAdapter(cmd);
DataSet ds=new DataSet();
sda.Fill(ds,"dtResult");
conn.Close();
//结果在ds的dtResult中。
foreach(DataRow dr in ds.Tables["dtResult"])
{
Response.Write(dr["字段A"].ToString()+"<br>");
}
-------------------------------------------------------------
System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection("server=.;database=你的数据库的名字;uid=sa;pwd=sa的密码;");
System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand();
cmd.Connection = conn;
cmd.CommandText="select 字段A from 表B where years=2000 and months=2";
conn.Open();
int i=Convert.ToInt32(cmd.ExecuteScalar().ToString());
conn.Close();

Ⅳ sql语句,给字段赋值

字符串里的单引号用''(即两个单引号)表示

updatehtgl_tx_logsetrolbk_sql='updatehtgl_tx_logsettx_date=11111111wherehtgl_tx_no=''6''|updatehtgl_tx_logsettx_time=111111wherehtgl_tx_no=''6'''
WHEREHTGL_TX_NO='6'

Ⅵ SQL 查询语句 循环 赋值

select @a=@a+课程编号 --语句里
--过程里
declare c cursor for
select 课程编号 from 理论课程安排 where 教师工号=@c
open c
fetch next from c into @a
while @@fetch_status=0
fetch next from c into @a

Ⅶ Sql中如何给变量赋值

DECLARE @n1 int,@n2 varchar(10)
set @n1 =(select age from table where column=xxx)
set @n2=(select gender from table where column = xxx )
------------------
或者一起赋值
就是楼上那个
DECLARE @n1 int,@n2 varchar(10)
select @n1 =age,@n2=gender
from table where column = xxx
------------------
select @n1,@n2 就知道变量的值了

Ⅷ 如何用SQL代码将动态查询结果赋值给变量

1、首先最基本的赋值就是默认值了。

Ⅸ sql查询字段后自动赋值的语句

update A
set address = null, phone = null
where name like '%张%';

然后提交

Ⅹ 如何把用sql语句查询的值赋值给标签

string sql = "select Lenth from Price where OriginalSta == DropDownList1.Items && Terminal == DropDownList2.Items ";

这里,SQL里不用双等号“==”,“=”就可以,谢谢,还有你连接字符串写的有问题,应该这样写:
string sql = "select Lenth from Price where OriginalSta ="+ DropDownList1.SelectedValue+" and Terminal ="+ DropDownList2.SelectedValue;

我不知道你数据库里OriginalSta ,Terminal 这两个字段是什么类型,如果不是int,float,double类型还应该加上''