SQL
SQL
Insert into employee (ID, E_Name, Fname,CNIC,Cell) Values (01, ‘Aslam’ , ‘Abid’ , 43202, 03322);
Select Name, FathersName, Salary, Cell, Address from employee where Adress = ‘LRK’ and Salary>
100000 and country = ‘Pakistan’;
Selct *from employee where Address= ‘LRK’ and Salary > 100000 and country = ’Pakistan’ or =’IND’;
Or
Between
Select name from emp where salary> (Select avg(salary) from emp;);
Add
Drop
Modify