“Postgres convertit le numéro en chaîne” Réponses codées

Postgres convertit le numéro en chaîne

Because the number can be up to 15 digits, you'll need to cast to an 64 bit (8-byte) integer. Try this:

SELECT * FROM table
WHERE myint = mytext::int8
The :: cast operator is historical but convenient. Postgres also conforms to the SQL standard syntax

myint = cast ( mytext as int8)
If you have literal text you want to compare with an int, cast the int to text:

SELECT * FROM table
WHERE myint::varchar(255) = mytext
Santino

entier de coulée postgresql à la chaîne

SELECT * FROM table WHERE cast(YOUR_INTEGER_VALUE as varchar) = 'string of numbers'
Restu Wahyu Saputra

Réponses similaires à “Postgres convertit le numéro en chaîne”

Questions similaires à “Postgres convertit le numéro en chaîne”

Plus de réponses similaires à “Postgres convertit le numéro en chaîne” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code