BIGINT datatype in mysql giving error at the time of creating table

Viewed 5835

I created a table and to column assign i assigned a datatype BIGINIT it giving a error "The given datatype BIGINT() contain errors and can not be accepted."

I am using mysql workbench 6.3 CE

2 Answers

Remove brackets, you are specifying round brackets which are not needed. Right syntax is as follows:

Use only BIGINT

Related