Computer Science – Databases | e-Consult
Databases (1 questions)
Login to see all questions.
Click on a question to view the answer
The SQL query to achieve this is:
SELECT ProductName, Price
FROM Products
WHERE Price > 500;
This query selects the specified columns from the Products table, but only includes rows where the value in the Price column is greater than 500.