PostgreSQL - Indexing Strategies
Given the table products(id INT, name TEXT) with a hash index on id, what will the query SELECT * FROM products WHERE id = 10; most likely use?
Given the table products(id INT, name TEXT) with a hash index on id, what will the query SELECT * FROM products WHERE id = 10; most likely use?
id column: id = 10.id, PostgreSQL will use a hash index scan to quickly find rows where id equals 10.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions