Challenge
Write a solution that finds the Id, BillingState, and AnnualRevenue of all Accounts where the BillingState is either 'California' or 'Texas' and the AnnualRevenue exceeds 250,000.
Return the results sorted by AnnualRevenue in ascending order.
The result format is in the following example:
Id | BillingState | AnnualRevenue |
---|---|---|
0014x00000SESBfAAP | California | 251000.16 |
0014x00000SESCLAA5 | Texas | 480000.39 |
0014x00000SESCNAA5 | California | 507617.22 |
0014x00000SESCNAA5 | California | 1250000.25 |