Commit 3b87fe7a authored by unknown's avatar unknown

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
parent 68cb02e8
id domain
1 mysql.com
2 hotmail.com
3 aol.com
use test;
drop table if exists foo;
!$1146 insert into foo values(1);
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;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment