mariadb/mysql-test/t/sel000003.test

19 lines
465 B
Text
Raw Normal View History

# sel000003
#
# Versions
# --------
# 3.22
# 3.23
#
# Description
# -----------
# This test is just a simple select.
# Testing count() function and GROUP BY clause.
#
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (name CHAR(20) NOT NULL PRIMARY KEY, score SMALLINT NOT NULL, KEY(score));
INSERT INTO t1 VALUES ('Sasha', 20), ('Matt', 20), ('Monty', 10), ('David', 10), ('Tim', 10), ('Jeremy', 10);
SELECT COUNT(*) as n, score FROM t1 GROUP BY score;
drop table t1;