注册 登录
编程论坛 SQLite论坛

如何在linux下sqlite3建立表

ly991160619 发布于 2013-04-30 22:36, 5200 次点击
初学数据库,linux怎么建立表啊,命令是什么??
[root@localhost ~]# sqlite3 mydb.txt
SQLite version 3.5.6
Enter ".help" for instructions
sqlite> create table Employee
   ...> (emp_id int not null,
   ...> emp_name varchar(10) not null,
   ...> address varchar(40),
   ...> );
SQL error: near ")": syntax error
sqlite> create table Employee
   ...> (emp_id int not null,
   ...> emp_name varchar(10) not null,
   ...> address varchar(40),
这是我在电脑上输入的,老是提示错?怎么建立啊
2 回复
#2
抛砖引玉2015-02-24 04:11
貌似,,,在addressvarchar(40)后面的那个逗号,应该是不用了吧

我不懂的,乱说一下,没用过sqlite和linux,但我玩过两天半mysql,百度了一下
http://www.w3cschool.cc/sqlite/sqlite-create-table.html
#3
菜鸟come2017-03-27 17:10
sqlite3>sqlite3 test.db
sqlite3>create table mytable(number int);
sqlite3>insert into mytable values(100);
sqlite3>select * from mytable;
1