Which of the following SQL statements will create a table called Birthdays with three columns for storing employee number, name and date of birth?CREATE table BIRTHDAYS (employee number, name, date of birth);CREATE table BIRTHDAYS (EMPNO, EMPNAME, BIRTHDATE);CREATE TABLE Birthdays (Empno NUMBER, Empname CHAR(20), Birthdate DATE); (*)CREATE TABLE Birthdays (Empno NUMBER, Empname CHAR(20), Date of Birth DATE);