Question: Using SQL and Screenshots Download the world-x database from the following MySQL website: http://dev.mysql.com/doc/index-other.html (Links to an external site.)Links to an external site. Create a
Using SQL and Screenshots
Download the world-x database from the following MySQL website: http://dev.mysql.com/doc/index-other.html (Links to an external site.)Links to an external site.
Create a database user named jump with password start.
Load the world-xdatabase into your MySQL database instance.
Grant create, drop, alter, insert, update, select, delete, and index privileges for user jump on the world-x database.
Submit a 2- to 3-page Microsoft Word document containing a screen shot of the tables in the world-x database.
Provide brief explanation of the MySQL grant command. How is this command used to implement database security
Using the world_x database you installed in Module 1 and your MySQL Workbench, create a new table named independence with the following attributes (columns):
A field named id which has data type auto_increment,
A field named country_name which has data type varchar(50), and
A field named independence_date which has type date.
After you create the table, run the following SQL command:
INSERT INTO independence(country_name, independence_date) VALUE (United States,1776-07-04)
Submit a 1-page Microsoft Word document that shows the following:
The SQL command you used to create the independence table and a list of the rows in the independence table.
Explain the purpose of the field named id. Why do you not have to include it in an insert statements? How would change the incrementing value to a number greater than one?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
