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

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -