Function is_bigint

The function checks strings for being of data type BIGINT.

Examples

SELECT is_bigint('3243546343') AS res;
-- Result is true

Result:

res
t
SELECT is_bigint('123.456') AS res;
-- Result is false