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 CustomerId, FirstName, LastName, Company, Address, City, State, Country, PostalCode, Phone, Fax, Email, SupportRepId, TotalSpend FROM customers WHERE State='TX' AND TotalSpend>5000;