Hellooo
I created table in mysql:
CREATE TABLE activ
(
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id),
ms CHAR(15),
year CHAR(4),
month CHAR(2),
day CHAR(2)
);
I want to prevent when I manualy insert this table same input..basicly to prevent that by accident I execute 2 times same .sql script that has 5-6 insert records..
how to do that?
sample of insert is:
INSERT INTO activ (ms, year, month, day) VALUES ('32434432','2007','03','24');
any help ??
I created table in mysql:
CREATE TABLE activ
(
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id),
ms CHAR(15),
year CHAR(4),
month CHAR(2),
day CHAR(2)
);
I want to prevent when I manualy insert this table same input..basicly to prevent that by accident I execute 2 times same .sql script that has 5-6 insert records..
how to do that?
sample of insert is:
INSERT INTO activ (ms, year, month, day) VALUES ('32434432','2007','03','24');
any help ??