Once unique constraint is set on a column, MySQL will initiate an index for that column to enforce this constraint.
Once into a certain query, Function NOW() will only be executed once while SYSDATE() will be executed every time called.
A certain query means in the same semicolon separated sentence.
Regular Expression starts with a ^ sign representing the beginning of a certain string, and end with a $ sign representing the end of a certain string.
E.G. '^.[a-e].*$' returns strings in which the second place is a character ranging from 'a' to 'e'.
The way of representing space in REGEXP is [[:space:]].
In MySQL, it is a good way to present results in fixed number pages using LIMIT and OFFSET in SQL.
```sql
SELECT * FROM TableName ORDER BY ColumnName LIMIT Number OFFSET Number.
```
```sql
DROP TABLE TableName
DROP TABLE IF EXISTS TableName
DROP DATABASE DatabaseName
DROP DATABASE IF EXISTS DatabaseName
```