You don't necessarily need to check if a table exists before creating it. You can use CREATE TABLE IF NOT EXISTS syntax, or let the database return an error if it exists. While checking is good practice in some contexts, it's not mandatory. The statement incorrectly presents it as a requirement.