PostgreSQL

连接数据库

GreptimeDB 支持 PostgreSQL 协议。要连接到 GreptimeDB,只需要在 psql 命令行工具中添加 -U 参数,后面跟上你的用户名。例如:

shell

  1. psql -h localhost -p 4003 -U greptime_user -d public
  2. Password for user greptime_user:
  3. psql (15.2, server 0.1.1)
  4. WARNING: psql major version 15, server major version 0.1.
  5. Some psql features might not work.
  6. Type "help" for help.
  7. public=>

记得将示例中的 greptime_user(username)greptime_pwd(password) 替换成自己的用户名和密码。

HTTP API

GreptimeDB 支持通过 HTTP API 发送 SQL 语句。要在 HTTP 请求中设置鉴权,请参考 HTTP API

写入数据

请参考 写入数据.

读取数据

请参考 读取数据.