sql赋值
⑴ sql中如何给变量赋值
/*
Sql server 存储过程中怎么将变量赋值
*/
--SQL赋值语句
DECLARE @test1 INT
SELECT @test1 = 111
SET @test1 = 222
--SQL函数赋值,假定count()是自定义函数
DECLARE @test2 INT
SELECT @test2 = COUNT(*) FROM sys.sysobjects
--SQL存储过程赋值,直接传参处理(类似C语言中的指针吗)
IF OBJECT_ID('sp_test') IS NOT NULL DROP PROCEDURE sp_test
GO
CREATE PROCEDURE sp_test(@test INT OUTPUT)
AS
BEGIN
SELECT @test = 999
GO
DECLARE @test3 INT
EXEC sp_test @test3 OUTPUT
SELECT @test3
DROP PROCEDURE sp_test
GO
⑵ sql怎么赋值
唉。。。
@t='a' --是把'a'赋值给@t
如果 @t的值已经是'a'了 那么
@b=@t 就是把@t的值又赋值给@b
你这个@table_name 从头到尾都没赋过值 拿什么给@TableName赋值啊
(注:sql 不区分大小写 如果你是程序代码习惯可以有,用不同大小写来区分不同变量就不行了)
⑶ sql 语句 建好表了 赋值语句怎么写 格式
方法有几种:
1.insert into 表名(列名1,列名2,列名3) values(值,值,值)
2.insert into 表名1 select 字段1,字段2 from 表名2 适合两个表之间的结构是一样
⑷ Sql赋值语句
declare @newtitle varchar(50)
select @newtitle=title from table
print @newtitle
表里即使有多条数据 @newtitle 也只有一个值 (最后那条记录的title,SQL 没有数组)
select @newtitle=title from table where......
print @newtitle
特定记录的 title
⑸ 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语句查询到的值赋值给变量
//多行
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查询结果如何赋值
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 查询语句 循环 赋值
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 server查询赋值问题
您这样写是不会报错的,结果是将T表第一行的TIME字段的内容赋值给@TEMPVALUE.
但这样不知道是不是您要的结果,首先,没有排序子句,如果有 ORDER BY TIME子句,就是把最早的时间给变量赋值,反之ORDER BY TIME DESC 就是把最新的时间给变量赋值。
一般使用TOP子句时,会配合ORDER BY 子句使用,否则可能无法有确定的结果。
当然,如果您对TIMEk字段建立了索引,可以不用TOP子句。
另外,也可以这样写:
SELECT @TEMPVALUE=MAX(TIME) FROM T或SELECT @TEMPVALUE=MIN(TIME) FROM T
会得到同样的结果
⑽ 关于SQL中的赋值
就是动态拼凑出一个sql语句啊,然后执行这个sql语句
例:declare @sql nvarchar(1000)
set @sql='select * from table_name where '
set @sql=@sql+'id=2'
exec (@sql)
这样这个sql语句就相当于是:
select * from table_name where id=2