Please see my below mentioned query which I getting as tabular output format in mysql. I want to change this query output to html format, how to do this? i am new to Mysql.
SELECT StoreName,
StoreCode AS `Code`,
LogoUrl,
BusinessStart AS `Starting Time`,
BusinessEnd AS `Closing Time`,
ClosedOn AS `Closed Days`,
MinOrderPrice AS `Minimum Order Price`,
DeliveryCharges AS `Delivery Charges`,
PackingTime AS `Packing Time`,
Validity AS `Validity`,
PhoneNumber AS `Contact Number`,
ZipCode AS `Post Code`,
Floor AS `Street`,
Line1 AS `Line`,
Line2 AS `County`,
Line3 AS `Land Line`,
CONCAT(c.Code, ' - ' ,c.Symbol) AS `Currency`
FROM store s INNER JOIN currency c ON c.CurrencyId = s.CurrencyId
WHERE StoreId = 4;