diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-04-07 13:52:26 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-04-07 13:52:26 +0200 |
commit | 4560e0acdafd57f3ba109b98e15ac047798d960c (patch) | |
tree | eb198b952f6e95105828ad4e2ff0a4686e9db62b | |
parent | d92b1cdbab408d8f1299257125c9ae375f3ca644 (diff) | |
download | postgresql-4560e0acdafd57f3ba109b98e15ac047798d960c.tar.gz postgresql-4560e0acdafd57f3ba109b98e15ac047798d960c.zip |
doc: Improve wording
Discussion: https://www.postgresql.org/message-id/flat/161626776179.652.11944895442156126506%40wrigleys.postgresql.org
-rw-r--r-- | doc/src/sgml/dml.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/dml.sgml b/doc/src/sgml/dml.sgml index 971e6a36b51..cbbc5e24633 100644 --- a/doc/src/sgml/dml.sgml +++ b/doc/src/sgml/dml.sgml @@ -26,9 +26,9 @@ <para> When a table is created, it contains no data. The first thing to do before a database can be of much use is to insert data. Data is - conceptually inserted one row at a time. Of course you can also - insert more than one row, but there is no way to insert less than - one row. Even if you know only some column values, a + inserted one row at a time. You can also insert more than one row + in a single command, but it is not possible to insert something that + is not a complete row. Even if you know only some column values, a complete row must be created. </para> |