MySQL "CREATE TABLE IF NOT EXISTS" -> Error 1050
As already stated, it's a warning not an error, but (if like me) you want things to run without warnings, you can disable that warning, then re-enable it again when you're done.
SET sql_notes = 0; -- Temporarily disable the "Table already exists" warning
CREATE TABLE IF NOT EXISTS ...
SET sql_notes = 1; -- And then re-enable the warning again
Works fine for me in 5.0.27
I just get a warning (not an error) that the table exists;