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

That is the code poj gave me so I don't know?

Replies are listed 'Best First'.
Re^4: mysql update table how to
by hippo (Archbishop) on Mar 19, 2019 at 16:32 UTC

    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.