1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

err000001.test BitKeeper file /home/sasha/src/bk/mysql/mysql-test/t/3.23/err000001.test

ins000001.test	BitKeeper file /home/sasha/src/bk/mysql/mysql-test/t/3.23/ins000001.test
ins000001.result	BitKeeper file /home/sasha/src/bk/mysql/mysql-test/r/3.23/ins000001.result
This commit is contained in:
sasha@mysql.sashanet.com
2000-10-18 11:58:06 -06:00
parent 7323cf3010
commit 5b1a34cecd
3 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,4 @@
id domain
1 mysql.com
2 hotmail.com
3 aol.com

View File

@ -0,0 +1,3 @@
use test;
drop table if exists foo;
!$1146 insert into foo values(1);

View File

@ -0,0 +1,11 @@
use test;
drop table if exists emails;
drop table if exists domain;
drop table if exists domain;
create table emails (email varchar(50));
insert into emails values ('sasha@mysql.com'),('monty@mysql.com'),
('foo@hotmail.com'),('foo@aol.com'),('bar@aol.com');
create table domain(id int not null auto_increment primary key,
domain varchar(50), unique(domain));
insert into domain (domain) select distinct substring(email, locate('@', email)+1) from emails;
@r/3.23/ins000001.result select * from domain;