in reply to Re^3: mysql update table how to
in thread mysql update table how to

Nonsense. poj wrote

my $sql = 'SELECT ID,DISABLED FROM EmployerJobs WHERE Username = ? AND UserPassword = ? AND Userid = ? AND Disabled <> ?';

which is valid SQL. Whereas you wrote

my $sql = 'SELECT ID,Disabled FROM EmployerJobs WHERE Username = ? AND Password = ? AND USERID = ? AND Disabled = <> ?';

which is not.