You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MySQL [(none)]> select b::Int64 as b ,count(1) from t2 group by b;
+------+---------+
| b | count() |
+------+---------+
| -1 | 1 |
| 4 | 1 |
| -3 | 1 |
| 2 | 1 |
+------+---------+
4 rows in set (0.033 sec)
MySQL [(none)]> select b::Int16 as b ,count(1) from t2 group by b;
+------+---------+
| b | count() |
+------+---------+
| 2 | 1 |
| 4 | 1 |
| -3 | 1 |
+------+---------+
3 rows in set (0.033 sec)
Summary
This is works:
The text was updated successfully, but these errors were encountered: