Q61. Write a query to display details of all those employees whose name is of 4 characters and start with 'A'.
Q62. Write a query to display names of all employees containing 'se' as a substring in name.
Q63. Update command in MySQL is _______________ command
Q64. What will happen if we miss the where clause in the UPDATE statement?
Q65. We can update values for more than one column using the UPDATE statement.
Q66. ________________ statement is used to remove one or more records from a table.
Q67. Consider the following query
Delete from employee;
The above command will ______________
Q68. Which of the following is not the type of function in MySQL?
Q69. __________________is used to perform some particular task and it returns zero or more values as a result.
Q70. Write a command to delete a record of an employee from employee table whose salary is more than 100000.