Table customers, columns = [CustomerId, FirstName, LastName, Company, Address, City, State, Country, PostalCode, Phone, Fax, Email, SupportRepId, TotalSpend] Create a MySQL query for all customers in Texas who have spent over five thousand dollars.
SELECT * FROM customers WHERE state='TX' AND TotalSpend>5000;