Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Our Q&A platform offers a seamless experience for finding reliable answers from experts in various disciplines. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

MYSQL Workbench question
Using a function, display the customer who has the highest credit limit.
. Display the customer number, customer name and credit limit.
I need my answer checked over for the question.
#Show me a list of customers who have the highest credit limit
use premier_products;
select count(*) customer_num, customer_name, credit_limit
from customers
Where credit_limit=
(Select AVG (credit_limit)
from customers)