1. Write three command statements to back up the `Orders` Tablefor data only, structure with data and structure only usingmysqldump. 2. Write the command statement to import the data usingmysqlimport from customers.csv file. 3. What's the difference touse the LOAD DATA LOCAL INFILE vs mysqlimport. 4. Write SQLstatements: a. Create a database user \"cis495_dev1\" with password\"dolphins\". b. Create the database \"cis495Demo\". c. Grant user\"cis495_user1\" with \"select\" ,\"delete\" and \"execute\" permission toDB \"cis495Demo\". d. Revoke the privilege \"delete\" for the user\"cis495_user1\". 5. List three ways ( SQL statement: update, alter,set) to change the password from \"dolphines\" to \"icando\" for theuser \"cis495_user1\". 6. Explain the difference between user androle.