I am working with a SQL Server database. I have a table products with around 50,000 rows.
The columns in the products table are id (primary, auto increment), title, price etc.
I have a second table Top_ten_products with columns id (primary, auto increment), product_id. This table keeps the record of the top ten products.
I want to retrieve the top ten products from the products table. But since the products table is very large in size, I am searching for a way where I can pop out particular ids from the products table without traversing the the whole 50,000 rows.
How can I do that? Thanks in advance