Tyger Guzman 2 Posted December 9, 2020 Share Posted December 9, 2020 Is it possible to build a comma separate string value in a script PROCEDURE test() BEGIN declare x char; declare tables cursor for Select distinct col1 from /mypath/mytable; for tab as tables do x += tab.col1; --this does not work end for; call print(x); END Link to comment Share on other sites More sharing options...
Deepak Kuletha Posted January 27, 2021 Share Posted January 27, 2021 Hi , Yes you can create comma separate string in a script , initially it can be achieved using vector concept in TDV. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now