To get credit for this assignment, perform the instructions below and enter the code you get from the instructions below here (Hint: starts with 360) Instructions First, create a MySQL database or use an existing database (make sure to use a UTF8 character set, like utf8mb4) and then create a table in the database called "Ages": CREATE TABLE Ages ( `name` VARCHAR(128), age INTEGER ); Then make sure the table is empty by deleting any rows that you previously inserted, and insert these rows and only these rows with the following commands: DELETE FROM Ages; INSERT INTO Ages (`name`, age) VALUES ('Deelan', 37); INSERT INTO Ages (`name`, age) VALUES ('Denver', 33); INSERT INTO Ages (`name`, age) VALUES ('Rona', 23); INSERT INTO Ages (`name`, age) VALUES ('Kodi', 29); INSERT INTO Ages (`name`, age) VALUES ('Seaan', 18); Once the inserts are done, run the following SQL command:SELECT sha1(CONCAT(`name`,age)) AS X FROM Ages ORDER BY X; Find the first row in the resulting record set and enter the long string that looks like 254c6127cdbc4c38e065317667340e8b0950046f (this is just a sample string).
To get credit for this assignment, perform the instructions below and enter the code you get from the instructions below here (Hint: starts with 360)
Instructions
First, create a MySQL
CREATE TABLE Ages ( `name` VARCHAR(128), age INTEGER );
Then make sure the table is empty by deleting any rows that you previously inserted, and insert these rows and only these rows with the following commands:
DELETE FROM Ages; INSERT INTO Ages (`name`, age) VALUES ('Deelan', 37); INSERT INTO Ages (`name`, age) VALUES ('Denver', 33); INSERT INTO Ages (`name`, age) VALUES ('Rona', 23); INSERT INTO Ages (`name`, age) VALUES ('Kodi', 29); INSERT INTO Ages (`name`, age) VALUES ('Seaan', 18); Once the inserts are done, run the following SQL command:SELECT sha1(CONCAT(`name`,age)) AS X FROM Ages ORDER BY X; Find the first row in the resulting record set and enter the long string that looks like 254c6127cdbc4c38e065317667340e8b0950046f (this is just a sample string).
Unlock instant AI solutions
Tap the button
to generate a solution
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)