PostgreSQL - Performance Tuning
Given a table
users(id SERIAL PRIMARY KEY, name TEXT) with 1 million rows, which scan is PostgreSQL likely to use for this query?SELECT * FROM users WHERE id = 500000;