Decimal type columns do not export when you use the Quick Export/Excel Instance/Excel Instance At Active Cell or Quick Export/Excel Instance/Excel Instance In New Sheet options. For example, if you run this query, then use either of the Quick Exports mentioned above, the ExcelBug1 and ExcelBug4 columns will be blank in the spreadsheet. This does not happen in the current release version (6.7.0.1524). SELECT TABLE_NAME , ROUND(500.9) AS ExcelBug1 , 501 AS ExcelBug2 , 500 + 1 AS ExcelBug3 , 500.9 AS ExcelBug4 FROM information_schema.TABLES;
↧