creating a table

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sekitoleko
    New Member
    • Sep 2006
    • 21

    creating a table

    I have used this syntax to create a table
    create emp(emp_id int,staff_Name varchar(10),det _Name varchar(20));
    This creates a table but I cannot insert any data in the table.How can i insert data in the table.
  • sridhar21
    New Member
    • Feb 2007
    • 26

    #2
    insert into emp values(100,'sri dhar','programm er')

    Comment

    Working...