Can someone tell me why these two statements are NOT returning the same results, shouldn't they be?
$sql = "SELECT *
From appleDesc
WHERE (Branch != \"$myBranch\" AND Department != \"$myDepartment\")
//////////////////////////////////////////////////////////////////////////////////////////////////////////
$sql = "SELECT *
From appleDesc
WHERE !(Branch = \"$myBranch\" AND Department = \"$myDepartment\")
Thank you in advance!
-Jon