Frequently Asked Questions (FAQ) for PostgreSQL
- Last updated: Mon May 26 15:25:04 EDT 2003
+ Last updated: Wed May 28 00:35:16 EDT 2003
Operational Questions
4.1) What is the difference between binary cursors and normal cursors?
- 4.2) How do I SELECT only the first few rows of a query?
+ 4.2) How do I SELECT only the first few rows of a query? A random row?
4.3) How do I get a list of tables or other things I can see in psql?
4.4) How do you remove a column from a table, or change it's data
type?
See the DECLARE manual page for a description.
- 4.2) How do I SELECT only the first few rows of a query?
+ 4.2) How do I SELECT only the first few rows of a query? A random row?
See the FETCH manual page, or use SELECT ... LIMIT....
evaluate only the first few records requested, or the entire query may
have to be evaluated until the desired rows have been generated.
+ To SELECT a random row, use:
+ SELECT col
+ FROM tab
+ ORDER BY random()
+ LIMIT 1;
+
4.3) How do I get a list of tables or other things I can see in psql?
You can read the source code for psql in file