blob: 0743d4d9b392a6c404fdda6623af147806e7d37b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
insert into ml
values ('elena', 'home.fml.org', 'fukachan@sapporo.iij.ad.jp', 1, 1);
insert into ml
values ('elena', 'home.fml.org', 'fukachan@home.fml.org', 1, 1);
select * from ml ;
select fml_address from ml
where fml_ml = 'elena'
and
fml_domain = 'home.fml.org'
and
fml_recipient = 1;
update ml set fml_recipient = 0
where fml_ml = 'elena'
and
fml_domain = 'home.fml.org'
and
fml_address = 'fukachan@home.fml.org';
select * from ml ;
select fml_address from ml
where fml_ml = 'elena'
and
fml_domain = 'home.fml.org'
and
fml_recipient = 1;
|