zhengzhou-spark opened a new issue, #23921: URL: https://github.com/apache/doris/issues/23921
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Description 官方文档中,对于insert into values的描述如下: --------------------------------------------------- Insert Into Insert Into 语句的使用方式和 MySQL 等数据库中 Insert Into 语句的使用方式类似。但在 Doris 中,所有的数据写入都是一个独立的导入作业。所以这里将 Insert Into 也作为一种导入方式介绍。 主要的 Insert Into 命令包含以下两种; INSERT INTO tbl SELECT ... INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...); 其中第二种命令仅用于 Demo,不要使用在测试或生产环境中。 ---------------------------------------------------- 由于最后一句话的描述,给人一种误解:Doris在生产环境中不支持insert into values语句。 其实不是这样的,Doris完全支持insert into values语句。 ### Solution 建议将最后一句描述改成类似如下形式,避免误解: 不建议使用insert into values单条数据这样操作,因为这么做性能很差;可以多条数据批量操作(INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...),......;),这样的性能更好。 ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org