MySQL

连接到服务端

在 MySQL 连接服务器的命令中,使用 -u 来设定用户名,使用 -p 来表示密码。在下方的示例代码中,请确保用自己的用户名和密码替换 greptime_user(username)greptime_pwd(password)

shell

  1. mysql -h 127.0.0.1 -P 4002 -u greptime_user -p
  2. Enter password:
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. Your MySQL connection id is 8
  5. Server version: 5.1.10-alpha-msql-proxy Greptime
  6. Copyright (c) 2000, 2023, Oracle and/or its affiliates.
  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.
  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  11. mysql>

时区

GreptimeDB 的 MySQL 协议接口遵循原始 MySQL 服务器的 时区处理方式

默认情况下,MySQL 使用服务器的时区来处理时间戳。要覆盖这一行为,可以使用 SQL 语句 SET time_zone = 'UTC'; 来为当前会话设置 time_zone 变量。time_zone 的值可以是:

  • 服务器的时区:SYSTEM
  • UTC 的偏移量,例如 +08:00
  • 任何时区的命名,例如 Europe/Berlin

一些 MySQL 客户端,例如 Grafana 的 MySQL 数据源,允许你为当前会话设置时区。想要知道当前设定的时区,可以通过 SQL 语句 SELECT @@time_zone; 来查询。

HTTP API

GreptimeDB 支持通过 HTTP API 发送 SQL 语句。关于如何设置鉴权认证信息,请参考 HTTP API

写入数据

请参考 写入数据.

读取数据

请参考 读取数据.