If the "SELECT" statement used as argument of the "EXISTS" statement is always returning "true" for all rows of the main ``SELECT`` statement, the ``EXISTS`` statement is useless and has the same effect as if it was not there. Still, this is probably not the original intend of the developer to have an ``EXISTS`` statement that is always true.
As a consequence, the ``SELECT`` statement of an ``EXISTS`` statement should always contain a ``WHERE`` clause.