> How do I pull a random sample of either 100 records or 5% of the > population of a table?
SELECT table.* FROM table ORDER BY random() LIMIT n; Yours, Laurenz Albe ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match