ubuntu postgresql 14.04 使用教程

2025-05-07 19:54:51

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

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

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

ubuntu postgresql 14.04 使用教程

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

ubuntu postgresql 14.04 使用教程

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

ubuntu postgresql 14.04 使用教程

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

ubuntu postgresql 14.04 使用教程

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

ubuntu postgresql 14.04 使用教程

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

ubuntu postgresql 14.04 使用教程
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢