Question: Using MySQL, create a new database named assignment2 and create a table named users using the following create command: CREATE TABLE users ( ID INT
Using MySQL, create a new database named assignment2 and create a table named users using the following create command:


CREATE TABLE users ( ID INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, FirstName VARCHAR (100), LastName VARCHAR (100), Username VARCHAR (50), Password VARCHAR (50), EmailAddress VARCHAR (200) );
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
