Consider the following SQL statement:
$tblStmt =
“CREATE TABLE Customer (Cl_Name CHAR(255),
Company CHAR(255),
Phone CHAR(255),
Cl_Id INT PRIMARY KEY AUTO_INCREMENT,”;
How many columns does this SQL statement create?
A.
Three columns
B.
Four columns
C.
Five columns
D.
Six columns