Question: What would be the SQL code to select all records from payments table just for customers who paid more than $ 1 0 , 0

What would be the SQL code to select all records from payments table just for customers who paid more than $10,000(column: amount)?q,
SELECT * FROM payments where amount>10000;
SELECT CUSTOMERS from TABLE=payments WHERE amount>10000;
SELECT MORE than 10000 amount from payments;
SELECT ALL records from payments where amount> $10,000;
 What would be the SQL code to select all records from

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!