I have upload an Excel file now I want to read data from that sheet with a select
query, and I want to concatenate 4 columns with separator _
as Type_name
The query I used is
select
*, '1' as fileid, 'Size' + '_' + 'Material' +'_' & 'Finishing' + '_' + 'Sides' as Type_Name
from [sheet1$]
where [Current Code] is not null or [Current Code] <> ''
All data is correctly returned by query except Type_Name
This query return Type_Name
as Size_Material_Finishing_Sides