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

Adding a collumn

I hava a column of number like: 

Numbers:

1

2

3

And I want to add a column of a string value to every number, result:

Numbers | String

1                | test

2                | test 

3               | test

How can I do this?

Labels (2)
1 Reply
stevejoyce
Specialist II
Specialist II

I think you just want

Numbers & '|test' as Field.

 

There is the function dual() you can look at, which stores a value with a string and numeric value, but I think you're looking for the above.