if not exists in SQL

When IF NOT EXISTS is used database is created only if given name does not conflict with an existing database's name. Without the use of IF NOT EXISTS MySQL throws an error. 
```
create database if not exists World;
```