MacBook Linux Windows等系统安装sqlite3
官方下载地址: https://www.sqlite.org/download.html
我这里以Mac系统为示例,Linux Windows都类似
官方下载Mac对应版本 Mac OS X(x86): sqlite-tools-osx-x86-3360000.zip
#解压
unzip sqlite-tools-osx-x86-3360000.zip
#进入目录
cd sqlite-tools-osx-x86-3360000
#打开数据库,相关操作
sqlite3 /Users/liang/Downloads/foo.db
.databases
.quit
.exit
.tables
CREATE TABLE `userinfo` (
`uid` INTEGER PRIMARY KEY AUTOINCREMENT,
`username` VARCHAR(64) NULL,
`departname` VARCHAR(64) NULL,
`created` DATE NULL
);
CREATE TABLE `userdeatail` (
`uid` INT(10) NULL,
`intro` TEXT NULL,
`profile` TEXT NULL,
PRIMARY KEY (`uid`)
);
.schema userinfo
网友评论