Dear Members
I have read this
Numeric Types
about BIGINT
Code:
Signed -9223372036854775808 to 9223372036854775807
Unsigned 0 to 18446744073709551615
Well I am very interesting with
Unsigned since I want only positive number for my PK auto_increment
I have the doubt about how create explicitly like
Unsigned when I define my table creation.
Because when I do the backup, I can see
Code:
DROP TABLE IF EXISTS `articulo`;
CREATE TABLE `articulo` (
`idArticulo` bigint(20) NOT NULL auto_increment,
`codigoArticulo` varchar(70) NOT NULL,
...
but How I can know that
bigint is
Signed/Unsigned explicitly ???
In MySQL query browser if I execute the
describe articulo query
I get
Code:
'idArticulo', 'bigint(20)', 'NO', 'PRI', '', 'auto_increment'
'codigoArticulo', 'varchar(70)', 'NO', '', '', ''
but not appear if is
Signed/Unsigned
The only way that I can see is doing right click in the table and select
Edit Table where I can see the column
flags with the values for such field (PK)
UNSIGNED and
ZEROFILL
Some guidance going to be appreciate
Thanks in advanced