- or download this
CREATE TABLE whois_e (
id_num int(11) DEFAULT '0' NOT NULL,
...
);
- or download this
create index whosis_1 on whois_e(id_num);
...
create index whosis_1 on whois_e(url);
create index whosis_1 on whois_e(sent);
- or download this
select * from whois_e
where email = '$email'
and url = '$url'
and sent = '1'
- or download this
create index whosis_2 on whois_e(email, url, sent);
- or download this
CREATE TABLE whois_e (
id_num int(11) unsigned DEFAULT '0' NOT NULL auto_increment primary
+ key,
...
);
- or download this
INSERT into whois_e VALUES(...), (...),(...), (...).....;