将count(*)值写入另一个表中的方法
程序员文章站
2022-06-20 09:38:12
一、写入同一个数据库的另一个表中: 复制代码 代码如下:use db1 go create&...
一、写入同一个数据库的另一个表中:
use db1
go
create table t1(
item varchar(100),
prov varchar(100),
qty int);
insert into t1(item,prov,qty)
select '原名','xx省',
(select count(*)
from updata where id='a0101');
二、写入另一个数据库的表中:
use db2
go
create table t2(
item varchar(100),
prov varchar(100),
qty int);
insert into t2(item,prov,qty)
select '原名',
'xx省',
(select count(*)
from opendatasource('sqloledb',
'data source=yy\iidc;
user id=sa;
password=password').
db1.dbo.updata where
culindexid='a0101')
复制代码 代码如下:
use db1
go
create table t1(
item varchar(100),
prov varchar(100),
qty int);
insert into t1(item,prov,qty)
select '原名','xx省',
(select count(*)
from updata where id='a0101');
二、写入另一个数据库的表中:
复制代码 代码如下:
use db2
go
create table t2(
item varchar(100),
prov varchar(100),
qty int);
insert into t2(item,prov,qty)
select '原名',
'xx省',
(select count(*)
from opendatasource('sqloledb',
'data source=yy\iidc;
user id=sa;
password=password').
db1.dbo.updata where
culindexid='a0101')
上一篇: php字符串截取函数用法分析
下一篇: 微信小程序实现分享朋友圈的图片功能示例