Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I am tring to concatenate first_name with last_name.
so i want to display in following way
first_name last_name Full_mane
pankaj Patil pankaj patil \
tahnk u.
Hi,
Load some thing like
first_name&' '&last_name as Full_Name
use & operator to concatenate.
Regards,
Anand
Hi,
Load some thing like
first_name&' '&last_name as Full_Name
use & operator to concatenate.
Regards,
Anand
first_name & ' ' & last_name as full_name
thankz I'm also searching that
thanks much!
please suggest me some other method rather than composite key?
Combining the fields is THE way of doing this. This is not a composite key... this is just creating one field with what you want.
Hello i am aware of this procedure to concat two fields using "&" but can we do this generic/dynamic for all the fields in the load no matter how many fields there are
if conditions
yeah i need solution to this too