Arch 安装和简单使用Postgresql
$ sudo pacman -S postgresql
$ sudo /etc/rc.d/postgresql start
$ groups postgres
su root su - postgres
详细解释看:https://wiki.archlinux.org/index.php/PostgreSQL_%28%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87%29
给postgresql射密码
$ su root # passwd postgres
开始使用
# su postgres
建立数据库
createdb test;
进入数据库
psql test;
建一个叫cats的表:
test=# create table cats(name varchar(30), weight int); CREATE TABLE
查询:
test=# select * from cats; name | weight ---------+-------- Leopard | 80 cheetah | 50 (2 rows)
插入数据:
test=# insert into cats values('Leopard', 80); INSERT 0 1
退出,帮助分别是:\h \q