ClickHouse/docs/es/query_language/functions/uuid_functions.md
Ivan Blinkov 2e1f6bc56d
[experimental] add "es" docs language as machine translated draft (#9787)
* replace exit with assert in test_single_page

* improve save_raw_single_page docs option

* More grammar fixes

* "Built from" link in new tab

* fix mistype

* Example of include in docs

* add anchor to meeting form

* Draft of translation helper

* WIP on translation helper

* Replace some fa docs content with machine translation

* add normalize-en-markdown.sh

* normalize some en markdown

* normalize some en markdown

* admonition support

* normalize

* normalize

* normalize

* support wide tables

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* normalize

* lightly edited machine translation of introdpection.md

* lightly edited machhine translation of lazy.md

* WIP on translation utils

* Normalize ru docs

* Normalize other languages

* some fixes

* WIP on normalize/translate tools

* add requirements.txt

* [experimental] add es docs language as machine translated draft

* remove duplicate script

* Back to wider tab-stop (narrow renders not so well)
2020-03-21 07:11:51 +03:00

3.2 KiB

Funciones para trabajar con UUID

Las funciones para trabajar con UUID se enumeran a continuación.

GenerateUUIDv4

Genera el UUID de versión 4.

generateUUIDv4()

Valor devuelto

El valor de tipo UUID.

Ejemplo de uso

En este ejemplo se muestra la creación de una tabla con la columna de tipo UUID e insertar un valor en la tabla.

CREATE TABLE t_uuid (x UUID) ENGINE=TinyLog

INSERT INTO t_uuid SELECT generateUUIDv4()

SELECT * FROM t_uuid
┌────────────────────────────────────x─┐
│ f4bf890f-f9dc-4332-ad5c-0c18e73f28e9 │
└──────────────────────────────────────┘

paraUUID (x)

Convierte el valor de tipo de cadena en tipo UUID.

toUUID(String)

Valor devuelto

El valor de tipo UUID.

Ejemplo de uso

SELECT toUUID('61f0c404-5cb3-11e7-907b-a6006ad3dba0') AS uuid
┌─────────────────────────────────uuid─┐
│ 61f0c404-5cb3-11e7-907b-a6006ad3dba0 │
└──────────────────────────────────────┘

UUIDStringToNum

Acepta una cadena que contiene 36 caracteres en el formato xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, y lo devuelve como un conjunto de bytes en un Cadena fija (16).

UUIDStringToNum(String)

Valor devuelto

Cadena fija (16)

Ejemplos de uso

SELECT
    '612f3c40-5d3b-217e-707b-6a546a3d7b29' AS uuid,
    UUIDStringToNum(uuid) AS bytes

┌─uuid─────────────────────────────────┬─bytes────────────┐
│ 612f3c40-5d3b-217e-707b-6a546a3d7b29 │ a/<@];!~p{jTj={) │
└──────────────────────────────────────┴──────────────────┘

UUIDNumToString

Acepta un Cadena fija (16) valor, y devuelve una cadena que contiene 36 caracteres en formato de texto.

UUIDNumToString(FixedString(16))

Valor devuelto

Cadena.

Ejemplo de uso

SELECT
    'a/<@];!~p{jTj={)' AS bytes,
    UUIDNumToString(toFixedString(bytes, 16)) AS uuid
┌─bytes────────────┬─uuid─────────────────────────────────┐
│ a/<@];!~p{jTj={) │ 612f3c40-5d3b-217e-707b-6a546a3d7b29 │
└──────────────────┴──────────────────────────────────────┘

Ver también

Artículo Original