diff --git a/doc/src/sgml/ref/execute.sgml b/doc/src/sgml/ref/execute.sgml
index c182ae0624b..83c9fa91aac 100644
--- a/doc/src/sgml/ref/execute.sgml
+++ b/doc/src/sgml/ref/execute.sgml
@@ -1,5 +1,5 @@
@@ -78,6 +78,15 @@ EXECUTE plan_name [ (
+
+ Examples>
+
+ Examples are given in the section of the documentation.
+
+
+
Compatibility
diff --git a/doc/src/sgml/ref/prepare.sgml b/doc/src/sgml/ref/prepare.sgml
index e7190b1b17e..780c5231c4b 100644
--- a/doc/src/sgml/ref/prepare.sgml
+++ b/doc/src/sgml/ref/prepare.sgml
@@ -1,5 +1,5 @@
@@ -139,6 +139,29 @@ PREPARE plan_name [ (
+
+ Examples
+
+ Create a prepared query for an INSERT statement,
+ and then execute it:
+
+PREPARE fooplan (int, text, bool, numeric(8,2)) AS
+ INSERT INTO foo VALUES($1, '$2', '$3', '$4');
+EXECUTE fooplan(1, 'Hunter Valley', 't', '200.00');
+
+
+
+
+ Create a prepared query for a SELECT statement,
+ and then execute it:
+
+PREPARE usrrptplan (int, date) AS
+ SELECT * FROM users u, logs l WHERE u.usrid=$1 AND u.usrid=l.usrid
+ AND l.date = $2;
+EXECUTE usrrptplan(1, current_date);
+
+
+
Compatibility