A
atse
Hi,
I have a string:
mystring="1234,5678,985,21544,55524,11264, ... ,"
How can I divide this string into
1234
5678
985
....
11264
....
And then delete records corresponding to these separated strings?
delete from mytable where id = '1234'
....
delete from mytable where id = '11264'
....
Thanks for any help.
Atse
I have a string:
mystring="1234,5678,985,21544,55524,11264, ... ,"
How can I divide this string into
1234
5678
985
....
11264
....
And then delete records corresponding to these separated strings?
delete from mytable where id = '1234'
....
delete from mytable where id = '11264'
....
Thanks for any help.
Atse