Assignment 2
Assignment 2
+--------------------+
| Database |
+--------------------+
| advik |
| employee |
| information_schema |
| mysql |
| performance_schema |
| school |
| sys |
+--------------------+
7 rows in set (0.02 sec)
mysql>
mysql> select * from Employee where EmailId like ('%gmail.com');
+-------+----------+------------+------------+--------------------+-----------+
| Empid | EmpName | Department | ContactNo | EmailId | EmpHeadId |
+-------+----------+------------+------------+--------------------+-----------+
| 101 | ISHA | E-101 | 1234567890 | [email protected] | 105 |
| 103 | NEHA | E-101 | 1234567890 | [email protected] | 101 |
| 105 | ABHISHEK | E-101 | 1234567890 | [email protected] | 102 |
+-------+----------+------------+------------+--------------------+-----------+
3 rows in set (0.00 sec)