Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo repair #398

Merged
merged 1 commit into from
Oct 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ We can obtain the corresponding Metric data through the data fields queried by S
> Query a row of data, return the column name of the result set through query and map them to the queried field.

eg:
queried Metric fields:one tow three four
query SQL:select one, tow, three, four from book limit 1;
queried Metric fields:one two three four
query SQL:select one, two, three, four from book limit 1;
Here the Metric field and the response data can be mapped into a row of collected data one by one.

#### **multiRow**
> Query multiple rows of data, return the column names of the result set and map them to the queried fields.

eg:
queried Metric fields:one tow three four
query SQL:select one, tow, three, four from book;
queried Metric fields:one two three four
query SQL:select one, two, three, four from book;
Here the Metric field and the response data can be mapped into multiple rows of collected data one by one.

#### **columns**
> Collect a row of Metric data. By matching the two columns of queried data (key value), key and the queried field, value is the value of the query field.

eg:
queried fields:one tow three four
queried fields:one two three four
query SQL:select key, value from book;
SQL response data:

Expand Down