Advertisement
Guest User

task

a guest
Feb 29th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. 1. CREATE TABLE employee_table
  2. (id int(5),
  3. name varchar(25),
  4. salary int(5),
  5. branch varchar(25));
  6. 1. INSERT INTO employee_table
  7. (id,name,salary,branch)
  8. VALUES(101,"anik",55000,"dhaka");
  9. VALUES(102,"naima",40000,"ctg");
  10. VALUES(103,"parul",25000,"dhaka");
  11. VALUES(104,"amin",20000,"comilla");
  12. VALUES(105,"dristy",30000,"sylhet");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement