The table t has a column c with following contents:
mysql> SELECT c FROM t;
If c is a CHAR column that has the case-insensitive latin1_swedish_ci collation what will be the output of the following SQL statement?
SELECT c, COUNT(*) from t GROUP BY c
A.
Option A
B.
Option B