简体   繁体   中英

sql creating table issue

unexpected beginning of statement

the coding

If you are using SQL then the issue is with create query where you passes int(10)

you can not pass any size to int type of fields

create table acc
(acc_id int not null primary key,
username_acc varchar(30) not null,
....)

Try with above Thanks

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM