Can anyone give me some idea to generate native oracle database alphanumeric sequence with column length 4, like 000A,000B and so on. I need 200k or more records of this sequence.
Any ideas/solutions are highly appreciated.
Thanks in advance
Can anyone give me some idea to generate native oracle database alphanumeric sequence with column length 4, like 000A,000B and so on. I need 200k or more records of this sequence.
Any ideas/solutions are highly appreciated.
Thanks in advance
If you want a
SELECTstatement to generate hexadecimal values then:If you want a
SEQUENCEthen they only generate numeric values; however, you can wrap its output in the sameTO_CHARfunction:Outputs:
db<>fiddle here