oracle11g - oracle: how to use function in "ALTER" statement -
there sequence named test_seq.
select to_number('-'||to_char(test_seq.currval)) dual; // can work alter sequence test_seq increment to_number('-'||to_char(test_seq.currval)); // wrong!
can use function(like: to_number()
or to_char()
) in alter statement?
no, cannot. railroad diagram disallows it.
Comments
Post a Comment