Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can I connect 2 fields like "name" and "surname" to "full name" coming from an sql database?
load
name,
surname,
name & ' ' & surname as [full name]
;
sql select
name,
surname
from
yourtableinsqldatabase
;
If both field are in the same table then:
SELECT
...
Name & ' ' & surname as completeName
....
From
....
ok, thank you . so you have to insert the merge command before loading the data from the sql databse?
You can do it in SQL directly as well:
sql select
name,
surname
name + ' ' + surname as FullName
from ...
there are different ways
- only sql side (Michael, Alessandro)
- mixed (sql + qlik) with concat in sql
- mixed with concat in qlik (Massimo)
.more here
http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load
Perfect! Thank you