SQL
文章平均质量分 85
mitshan
这个作者很懒,什么都没留下…
展开
-
在Ubuntu 18.04上安装PostgreSQL数据库
安装 apt install postgresql 就可以了, 如果没有权限, 在前面加上sudo. Ubuntu 18.04 默认安装的是10版本. 配置 安装完成后, 有提示 Success. You can now start the database server using: /usr/lib/postgresql/10/bin/pg_ctl -D /var/lib/postgresql/10/main -l logfile start Ver Cluster Port Status原创 2020-11-21 20:53:52 · 475 阅读 · 0 评论 -
PostgreSQL常用命令
备份某表的数据到SQL文件(Insert形式) pg_dump -U postgres --table=export_table --data-only --column-inserts my_database > data.sql原创 2019-11-26 11:21:01 · 131 阅读 · 0 评论 -
SQL命令类型
Data Definition Language (DDL)Data definite statements are used to define the structures of databases or tables. Statements involved are: CREATE, ALTER, DROP, RENAME, TRUNCATE.Data Manipulation Languag转载 2016-09-12 15:25:49 · 293 阅读 · 0 评论