Guest User

Untitled

a guest
Jun 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. create table JEmp
  2. (
  3. J_Id int Identity,
  4. J_Name varchar(100),
  5. J_Contact int,
  6. J_City varchar(100),
  7. primary key(J_Id)
  8. )
  9.  
  10. insert into JEmp(J_Name, J_Contact, J_City)
  11. values ('David Warner', 9821766418, 'New York')
Add Comment
Please, Sign In to add comment