Just wondering what peoples opinions are about defining values inside SQL statements when using the prepared statements such as:
$sql->query("SELECT * FROM ".TABLE_NAME." WHERE id = :id");
$sql->bind(':id', $id);
Not all the code but you can see what I am getting at. Should I bind the table name is what I am basically asking.