diff --git a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md index 6d42714a6..a3a9b88ed 100644 --- a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md +++ b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md @@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows: ``` IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed. diff --git a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md index 8108566d5..a0379a876 100644 --- a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md +++ b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md @@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows: ``` IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed. diff --git a/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md b/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md index 934aef190..7e29cacc8 100644 --- a/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md +++ b/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md @@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows: ``` IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed. diff --git a/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md b/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md index 934aef190..7e29cacc8 100644 --- a/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md +++ b/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md @@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows: ``` IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed. diff --git a/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md b/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md index 60d6aae88..264832ff3 100644 --- a/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md +++ b/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md @@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows: ``` IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed. diff --git a/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md b/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md index 7cbd7d021..75cee861d 100644 --- a/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md +++ b/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md @@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows: ``` IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed. diff --git a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md index f508407c7..feb731b34 100644 --- a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md +++ b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md @@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell ```sql IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` -以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 +以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 > 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。 diff --git a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md index 8c047caa1..c1e21574a 100644 --- a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md +++ b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md @@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell ```sql IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` -以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 +以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 > 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。 diff --git a/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md b/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md index 1b53fa8d4..73b1df2f8 100644 --- a/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md +++ b/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md @@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell ```sql IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` -以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 +以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 > 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。 diff --git a/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md b/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md index 1b53fa8d4..73b1df2f8 100644 --- a/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md +++ b/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md @@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell ```sql IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` -以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 +以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 > 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。 diff --git a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md index f508407c7..feb731b34 100644 --- a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md +++ b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md @@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell ```sql IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` -以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 +以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 > 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。 diff --git a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md index 8c047caa1..c1e21574a 100644 --- a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md +++ b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md @@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell ```sql IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) -IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1') +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") ``` -以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 +以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。 > 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。