tags:

views:

40

answers:

1

What is the equivalenf of a Java long in the context of Mysql variables?

+2  A: 

SIGNED BIGINT is a 8-bytes long integer just like Java's long.

Crozin
Note that in MySQL all `INT` types are signed by default.
NullUserException