PostgreSQL常用SQL语句

2023-10-19 09:49:18 浏览数 (1)

PostgreSQL常用SQL语句

PostgreSQL与MySQL语法有一些细微差异,记录一下PostgreSQL常用的SQL语句。

  1. 创建数据库、用户,并授予用户权限
代码语言:javascript复制
create database test;
create user test with password 'test';

grant all privileges on database test to test;
grant all privileges on all tables in schema public to test;
  1. 其他常用
代码语言:javascript复制
# 统计当前所有连接数
select count(1) from pg_stat_activity;

# 查询当前连接数详细信息
select * from pg_stat_activity;

# 查询最大连接数
show max_connections;
  • MySQL多层级树形结构表的搜索查询优化
  • 使用WordPress作为小程序后端——APPID有效性前置检查
  • 使用WordPress作为小程序后端——小程序请求前置检查
  • Windows rclone挂载sftp
  • 迁移——从Electron迁移到Eclipse Theia
  • 使用typescript开发chrome扩展
  • use multiple simple queries or a join
  • php: /usr/local/lib/libcurl.so.4: no version information available (required by php)
  • how to improve the rank of search results in google
  • SEO导航

0 人点赞