1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-02 19:25:03 +03:00
mariadb/mysql-test/t/sel000001.test
monty@donna.mysql.com 9ff59511a5 Cleanup of tests to make them less dependent of eachother
Added new big select test
2001-01-03 02:15:48 +02:00

19 lines
373 B
Plaintext

# sel000001
#
# Versions
# --------
# 3.22
# 3.23
#
# Description
# -----------
# This test is just a simple select.
# Testing WHERE clause.
#
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (s CHAR(20) PRIMARY KEY, id INT);
INSERT INTO t1 VALUES ('cat', 1), ('mouse', 3), ('dog', 2), ('snake', 77);
@r/sel000001.result SELECT s, id FROM t1 WHERE s = 'mouse';
drop table t1;