mysql怎么把多张数据结构相同的表,合成一张视图表
mesh表结构为idmeshcgnamepriceaddressbranddatetimetools表结构为idtoolscgnamepriceaddressbrandd...
mesh 表 结构为 id meshcg name price address brand datetime
tools 表 结构为 id toolscg name price address brand datetime
想合成的视图表为 iae 表结构为 cg name price address brand datetime
该怎么写 展开
tools 表 结构为 id toolscg name price address brand datetime
想合成的视图表为 iae 表结构为 cg name price address brand datetime
该怎么写 展开
3个回答
展开全部
create view iae
as
select `meshcg` as `cg`,`name`,`price`,`address`,`brand`,`datetime` from `mesh`
union
select `toolscg` as `cg`,`name`,`price`,`address`,`brand`,`datetime` from `tools`
as
select `meshcg` as `cg`,`name`,`price`,`address`,`brand`,`datetime` from `mesh`
union
select `toolscg` as `cg`,`name`,`price`,`address`,`brand`,`datetime` from `tools`
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create view 视图名
as
select f1,f2,f3,f4 from table1
union
select f1,f2,f3,f4 from table2
as
select f1,f2,f3,f4 from table1
union
select f1,f2,f3,f4 from table2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询