i have the following simple report
DROP PROCEDURE IF EXISTS sp_DBR_DealerReport
$$
CREATE PROCEDURE `sp_DBR_DealerReport`()
BEGIN
SELECT dealers.name, programs.name, contracts.effective_date, contracts.program_name, contracts.agreement_number, contracts.vehicle_make, contracts.vehicle_model, contracts.vin, contracts.transmit_date, contracts.vehicle_mileage
from tripac.contracts, tripac.dealers, tripac.programs
where contracts.dealer_id = dealers.id and contracts.program_id = programs.id
group by dealers.name, programs.name, contracts.effective_date, contracts.program_name, contracts.agreement_number, contracts.vehicle_make, contracts.vehicle_model, contracts.vin, contracts.transmit_date, contracts.vehicle_mileage;
END
$$
Please show how to make the result rows with a blue background and white text
I am having trouble understanding that the rowstyle is in a cloumn.
Additionally how would one make every other row be blue with white text
Your assistance would be much appreciated.