手抄报 安全手抄报 手抄报内容 手抄报图片 英语手抄报 清明节手抄报 节约用水手抄报

ubuntu postgresql 14.04 使用教程

时间:2024-10-14 13:59:43

1、打开终端窗口。输入sudo su postgres然后psql,这样就进入postgres了。

ubuntu postgresql 14.04 使用教程
ubuntu postgresql 14.04 使用教程
ubuntu postgresql 14.04 使用教程

2、输入help可以有些帮助指令。

ubuntu postgresql 14.04 使用教程

3、输入\l可以查看当前存在的数据库。

ubuntu postgresql 14.04 使用教程
ubuntu postgresql 14.04 使用教程

4、CREATE DATABASE 名字;这样可以创建数据库。

ubuntu postgresql 14.04 使用教程
ubuntu postgresql 14.04 使用教程

5、\c 数据库名字;这样可以连接到创建的数据库。

ubuntu postgresql 14.04 使用教程

6、CREATE TABLE 名字(id INT,name VARCHAR(50));这样可以创建表格。

ubuntu postgresql 14.04 使用教程

7、\d可以查看创建的表格。

ubuntu postgresql 14.04 使用教程

8、DROP TABLE 名字;这个指令可以删除表格。

ubuntu postgresql 14.04 使用教程

9、INSERT INTO 名字(id, name)VALUES();现在可以这样插入数据。

ubuntu postgresql 14.04 使用教程

10、SELECT * FROM 名字;这样可以读取表格数据。

ubuntu postgresql 14.04 使用教程

11、UPDATE 名字 SET name='alice' WHERE id=88;这里是更新已经存在的表格信息。

ubuntu postgresql 14.04 使用教程
© 手抄报圈