Create a table called student. The table will consist of the following fields:
FirstName LastName Email CellPhone Major GPA StartDate StudentId (the primary key)
The following information is the type of data you will use to define your table. Go to the Web and look for a table similar to this to use as your guide.
Data Type | Description | integer(size) | | int(size) | | smallint(size) | | tinyint(size) | Holds integers only | The maximum number of digits is specified by size in parentheses. | decimal(size, d)
numeric(size, d) Holds numbers with fractions. | The maximum number of digits is specified in size. The maximum number of digits to the right of the decimal is specified in d. | char(size) | Holds a fixed-length string (can contain letters, numbers, and special characters). The fixed size is specified by size in parentheses. | varchar(size) | Holds a variable-length string (can contain letters, numbers, and special characters). The maximum size is specified by size in parentheses. | date(yyyymmdd) | Holds a date. |
|