鼎鼎知识库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Postman第一次请求.md 450B

请求:

POST 192.168.8.110:6020/rest/sql

Headers:
    Authorization Basic cm9vdDp0YW9zZGF0YQ==
    Content-Type application/json

Body
    select * from test.t

响应:

{
    "status": "succ",
    "head": [
        "ts",
        "cdata"
    ],
    "data": [
        [
            "2019-08-09 08:00:00.000",
            10
        ],
        [
            "2019-08-09 08:00:05.000",
            20
        ]
    ],
    "rows": 2
}