Test table users
Now you need to make a test table, which we will practice on in the following lessons. Let this table contain a list of workers: their names, ages and salaries:
| id | name | age | salary |
|---|---|---|---|
| 1 | user1 | 23 | 400 |
| 2 | user2 | 25 | 500 |
| 3 | user3 | 23 | 500 |
| 4 | user4 | 30 | 900 |
| 5 | user5 | 27 | 500 |
| 6 | user6 | 28 | 900 |
Create a database test and in it a table users with the contents specified above.
Make a dump of this table so that you can easily restore it later.