创建一个表:
table name: list
id int 自增长的
name char(250) 按这个排序
很简单的,可我就是写不对!气死了!
---------------------------------------------------------------
create table list(id autoincrement not null, name char(250))
或
create table list(id counter not null, name char(250))
---------------------------------------------------------------