CREATE TABLE EMP(Id integer PRIMARY KEY, FirstName text, LastName text, salary money); INSERT INTO EMP VALUES(1,'Akash', 'Verma', 45000); INSERT INTO EMP VALUES(2,'Lucy', 'Stark', 50000); INSERT INTO EMP VALUES(3,'Frank', 'Browne', 42000); INSERT INTO EMP VALUES(4,'Jane', 'Sharma', 30000); INSERT INTO EMP VALUES(5,'Bharat', 'Singh', 40000); INSERT INTO EMP VALUES(6,'mohmmad', 'Khan', 34000); INSERT INTO EMP VALUES(7,'Abdul', 'Shaikh', 37000); select LastName from EMP where LastName LIKE '__a%';
To embed this project on your website, copy the following code and paste it into your website's HTML: