mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
17 lines
466 B
Text
17 lines
466 B
Text
# 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 t;
|
|
CREATE TABLE t (name CHAR(20) NOT NULL PRIMARY KEY, score SMALLINT NOT NULL, KEY(score));
|
|
INSERT INTO t VALUES ('Sasha', 20), ('Matt', 20), ('Monty', 10), ('David', 10), ('Tim', 10), ('Jeremy', 10);
|
|
@r/sel000003.result SELECT COUNT(*) as n, score FROM t GROUP BY score;
|