Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sagidam
Frequent Visitor

sql command "union"

I am trying to union two tables by this command on import data

 

"SELECT 'XXXX' AS SiteName, * FROM XXXX.dbo.jurnaltrans

union
SELECT 'YYYY' AS SiteName, * FROM YYYY.dbo.jurnaltrans"

 

and get this ERROR

"DataSource.Error: Microsoft SQL: Error converting data type varchar to float.
Details:
    DataSourceKind=SQL
    DataSourcePath=XXXXXXXXXX
    Message=Error converting data type varchar to float.
    Number=8114
    Class=16

PLEASE HELP

2 ACCEPTED SOLUTIONS
JM_nxgn
Helper I
Helper I

@sagidam 

I'm not sure this is the correct place to ask a question like this, but oh well.

 

Have you ensured that both tables have the same number of columns, and both the order of the columns are the same and the data type.

View solution in original post

v-xicai
Community Support
Community Support

Hi @sagidam ,

 

The UNION operator is used to combine the result-set of two or more SELECT statements.

  • Each SELECT statement within UNION must have the same number of columns
  • The columns must also have similar data types
  • The columns in each SELECT statement must also be in the same order

 

You may list the corresponding columns like syntax codes below:

 

SELECT City, Country FROM Customers

WHERE Country='Germany'

UNION

SELECT City, Country FROM Suppliers

WHERE Country='Germany'

ORDER BY City;

 

You may also create a calculated table like DAX below to combine columns using DAX .

 

New table= UNION (SELECTCOLUMNS(Table1,"Account Name",Table1[A]),SELECTCOLUMNS(Table2,"Account Name",Table2[B]))

For more professional SQL help, you may post your issue in SQL Server Community.

 

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

View solution in original post

2 REPLIES 2
v-xicai
Community Support
Community Support

Hi @sagidam ,

 

The UNION operator is used to combine the result-set of two or more SELECT statements.

  • Each SELECT statement within UNION must have the same number of columns
  • The columns must also have similar data types
  • The columns in each SELECT statement must also be in the same order

 

You may list the corresponding columns like syntax codes below:

 

SELECT City, Country FROM Customers

WHERE Country='Germany'

UNION

SELECT City, Country FROM Suppliers

WHERE Country='Germany'

ORDER BY City;

 

You may also create a calculated table like DAX below to combine columns using DAX .

 

New table= UNION (SELECTCOLUMNS(Table1,"Account Name",Table1[A]),SELECTCOLUMNS(Table2,"Account Name",Table2[B]))

For more professional SQL help, you may post your issue in SQL Server Community.

 

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

JM_nxgn
Helper I
Helper I

@sagidam 

I'm not sure this is the correct place to ask a question like this, but oh well.

 

Have you ensured that both tables have the same number of columns, and both the order of the columns are the same and the data type.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.