Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
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.