Z
ziyu
Unregistered / Unconfirmed
GUEST, unregistred user!
Mssql中:
create table table_1
(column_1 int not null,
column_2 char(10) null)
go
insert table_1 values (89,null)
go
declare @var1 int
set @var1=9
update table_1
set column_1=@var_1
where column_1=89
go
我想在delphi中动态的给@var_1赋值,这样的sql语句应该怎么写。
create table table_1
(column_1 int not null,
column_2 char(10) null)
go
insert table_1 values (89,null)
go
declare @var1 int
set @var1=9
update table_1
set column_1=@var_1
where column_1=89
go
我想在delphi中动态的给@var_1赋值,这样的sql语句应该怎么写。