diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-06-20 16:00:44 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-06-20 16:00:44 +0000 |
commit | c2c2fd57eecd1c70f0bf10954581bbca7977b7f7 (patch) | |
tree | 8531643e71569a7ebd95ae4280f5a143279b2c15 /src/bin/pgaccess/doc/html | |
parent | 2912fd45d1f143cf00b8ac5d4c93d5e4ebf2b51e (diff) | |
download | postgresql-c2c2fd57eecd1c70f0bf10954581bbca7977b7f7.tar.gz postgresql-c2c2fd57eecd1c70f0bf10954581bbca7977b7f7.zip |
Improve COPY syntax to use WITH clause, keep backward compatibility.
Diffstat (limited to 'src/bin/pgaccess/doc/html')
-rw-r--r-- | src/bin/pgaccess/doc/html/tutorial/tut_edit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pgaccess/doc/html/tutorial/tut_edit.html b/src/bin/pgaccess/doc/html/tutorial/tut_edit.html index 8282fb9a422..a4e75b17791 100644 --- a/src/bin/pgaccess/doc/html/tutorial/tut_edit.html +++ b/src/bin/pgaccess/doc/html/tutorial/tut_edit.html @@ -29,7 +29,7 @@ a text file named <samp>newref.txt</samp> that starts like this:<p> Notice that there are two consecutive tildes to allow for the fact that this particular entry doesn't have anything in the <b>Editor</b> field. You can then perform a <em>Query</em> as follows:<p> -<samp>COPY psyref FROM '/home/jim/newref.txt' USING DELIMITERS +<samp>COPY psyref FROM '/home/jim/newref.txt' WITH DELIMITER '~';</samp><p> This will read the records from <samp>newref.txt</samp> and insert them into the table <samp>psyref</samp>. See the PostgreSQL documentation under the headings |