Write a query to display all the details of all the 'bills' whose payment_date is on the year 2018, sorted by payable_amount in descending order

Question

Write a query to display all the details of all the 'bills' whose payment_date is on the year 2018, sorted by payable_amount in descending order
🧐 Not the exact question you are looking for?Go ask a question

Solution 1

Sure, here is the SQL query you need:

SELECT * 
FROM bills 
WHERE YEAR(payment_date) = 2018 
ORDER BY payable_amount DESC;

This query will select all columns from the 'bills' table where the year of the 'payment_date' is 2018. The results will be sorted by the 'payable_amount' column in Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study prob

Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solv

This problem has been solved

Similar Questions

Write a query to display all the details of all the 'bills' whose payment_date is on the year 2018, sorted by payable_amount in descending order.

Write a query to display all the details of all the 'bills' whose payment_date is on the year 2018, sorted by payable_amount in descending orde

Write a query to display all the details of all the 'bills' whose payment_date is on the year 2018, sorted by payable_amount in descending order

Write a query to display the details of all the bills whose 'total_units' greater than 10000, sorted by total_units in descending order.

Write a query to display the details of all the bills whose 'total_units' greater than 10000, sorted by total_units in descending orde

1/3