1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>MOVE</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="sql-commands.html" title="SQL Commands">
<link rel="prev" href="sql-lock.html" title="LOCK">
<link rel="next" href="sql-notify.html" title="NOTIFY">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="sql-move"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>MOVE — position a cursor</p>
</div>
<a name="id778673"></a><a name="id778683"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">MOVE [ <em class="replaceable"><code>direction</code></em> { FROM | IN } ] <em class="replaceable"><code>cursorname</code></em></pre>
</div>
<div class="refsect1" lang="en">
<a name="id778714"></a><h2>Description</h2>
<p> <code class="command">MOVE</code> repositions a cursor without retrieving any data.
<code class="command">MOVE</code> works exactly like the <code class="command">FETCH</code>
command, except it only positions the cursor and does not return rows.
</p>
<p> Refer to
<a href="sql-fetch.html">FETCH</a>
for details on syntax and usage.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id778757"></a><h2>Outputs</h2>
<p> On successful completion, a <code class="command">MOVE</code> command returns a command
tag of the form
</p>
<pre class="screen">MOVE <em class="replaceable"><code>count</code></em></pre>
<p>
The <em class="replaceable"><code>count</code></em> is the number
of rows that a <code class="command">FETCH</code> command with the same parameters
would have returned (possibly zero).
</p>
</div>
<div class="refsect1" lang="en">
<a name="id778798"></a><h2>Examples</h2>
<pre class="programlisting">BEGIN WORK;
DECLARE liahona CURSOR FOR SELECT * FROM films;
-- Skip the first 5 rows:
MOVE FORWARD 5 IN liahona;
MOVE 5
-- Fetch the 6th row from the cursor liahona:
FETCH 1 FROM liahona;
code | title | did | date_prod | kind | len
-------+--------+-----+------------+--------+-------
P_303 | 48 Hrs | 103 | 1982-10-22 | Action | 01:37
(1 row)
-- Close the cursor liahona and end the transaction:
CLOSE liahona;
COMMIT WORK;</pre>
</div>
<div class="refsect1" lang="en">
<a name="id778814"></a><h2>Compatibility</h2>
<p> There is no <code class="command">MOVE</code> statement in the SQL standard.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id778828"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-close.html">CLOSE</a>, <a href="sql-declare.html">DECLARE</a>, <a href="sql-fetch.html">FETCH</a></span>
</div>
</div></body>
</html>
|