访问联盟查询

问题描述

我是新来的用户,需要一些帮助,我创建了一个名为FE的联合查询,并希望该联合查询FE仅查看2列...现在,当我运行FE查询时,我看到“县,[总投票数]”这两个我彼此相邻编码的列,我可以看到我不想在FE联合查询中查看的所有列。请帮忙 .... Output of below code... However,I want only 2 columns

我在FE中的sql代码

Select County,[Total Of VoteCount],* From AGC
UNION ALL 
Select County,*From CBC;

FE is the Union Query that I created using AGC and CBC Query

解决方法

星号<component ref="childcomponent"></markdown> process: function(){ // items is defined object inside data() of the child component var hasClass= this.$refs.childcomponent.item } 表示全部用*语言表示。因此,在合并之前,从两个查询中都删除SQL。请尝试以下。

*