扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
mysql中,可用库名前缀同时查询两个数据库中的数据。
成都创新互联专注为客户提供全方位的互联网综合服务,包含不限于成都做网站、成都网站制作、安泽网络推广、小程序制作、安泽网络营销、安泽企业策划、安泽品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;成都创新互联为所有大学生创业者提供安泽建站搭建服务,24小时服务热线:13518219792,官方网址:www.cdcxhl.com
工具:mysql 5.6
步骤:
1、如图可见,在本地localhost中有2个数据库,分别是badkano和badkano_test。
2、假如两个数据库中有相同的表student,数据分别如下:
3、要同时查询两个数据库中的上边两张表,语句如下:
select * from badkano.studentunion all select * from badkano_test.student;
4、查询结果就将2个库中的数据一起查出来了:
create function myLength(@col varchar(1000)) returns int
as
begin
declare @v int
set @v=1
declare @i int
set @i=charindex('|',@col)
while(@i0)
begin
set @v=@v+1
set @col=substring(@col,@i+1,len(@col))
set @i=charindex('|',@col)
end
return @v
end
go
select dbo.mylength('123') //结果是1
select dbo.mylength('|123') //结果是2
select dbo.mylength('|123|') //结果是3
你的语句就可以用:
select * from 表 where dbo.mylength(a) dbo.mylength(b)
--注意函数名前要加dbo.
update pre_forum_typeoptionvar set value = (select subject form pre_forum_thread where pre_forum_thread.tid = (select tid from pre_forum_typeoptionvar where optionid=33))
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流