randstr
função
Aplica-se a: Databricks Runtime 16.1 e versões posteriores
Retorna uma sequência aleatória de length
caracteres alfanuméricos.
Sintaxe
randstr ( length [, seed] )
Argumentos
-
length
: UmaSMALLINT
ouINT
expressão não negativa constante, especificando o comprimento da cadeia de caracteres de resultado. -
seed
: Uma expressãoSMALLINT
opcional, ou expressãoINT
, que serve como semente para a geração de uma string aleatória.
Devoluções
Uma STRING
constituída pelos caracteres a-z
, A-Z
e 0-9
.
Exemplos
> SELECT randstr(10), randstr(10);
Xn2IiSepLX w3F34omh1C
-- Using a fixed seed, the outcome is deterministic series of random strings.
> SELECT randstr(10, 0), randstr(10, 0) FROM VALUES(1), (2), (3);;
ceV0PXaR2I ceV0PXaR2I
lBhHi56d0u lBhHi56d0u
CtuwSOTLiL CtuwSOTLiL