diff --git a/doc/src/sgml/ref/select_into.sgml b/doc/src/sgml/ref/select_into.sgml index 5b3a98dbb6..1d5518d8a3 100644 --- a/doc/src/sgml/ref/select_into.sgml +++ b/doc/src/sgml/ref/select_into.sgml @@ -1,5 +1,5 @@ @@ -119,10 +119,9 @@ SELECT [ ALL | DISTINCT [ ON ( expressionECPG (see ) and PL/pgSQL (see ). The PostgreSQL usage of SELECT - INTO to represent table creation is historical. It's + INTO to represent table creation is historical. It is best to use CREATE TABLE AS for this purpose in - new code. (CREATE TABLE AS isn't standard - either, but it's less likely to cause confusion.) + new code. diff --git a/doc/src/sgml/ref/set_transaction.sgml b/doc/src/sgml/ref/set_transaction.sgml index df66ca2bb7..6071df530e 100644 --- a/doc/src/sgml/ref/set_transaction.sgml +++ b/doc/src/sgml/ref/set_transaction.sgml @@ -1,4 +1,4 @@ - + SET TRANSACTION @@ -118,10 +118,10 @@ where transaction_mode is one of: - It is possible to dispense with SET TRANSACTION by - instead specifying the desired SET TRANSACTION + by instead specifying the desired transaction_modes in - START TRANSACTION. + BEGIN or START TRANSACTION.