mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
9e853c97de
sel000003.result BitKeeper file /home/sasha/src/bk/mysql-gcov/mysql-test/r/3.23/sel000003.result sel000003.test BitKeeper file /home/sasha/src/bk/mysql-gcov/mysql-test/t/3.23/sel000003.test mysql-test/mysql-test-run: added gcov support
7 lines
No EOL
308 B
Text
7 lines
No EOL
308 B
Text
use test;
|
|
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/3.23/sel000003.result select count(*) as n,score from t group by score; |