when i set up the table it looked like this
`id` INT NOT NULL AUTO_INCREMENT,
`broad1` varchar (250) not null,
`broad2` varchar(250) not null,
primary key (id)
so when i set the where clause to id=1 then this should be correct should? or have i set the table up wrong?
do i need to set id as the primary key?