Sandeep Kumar
What is syntax for create new Table in database?
By Sandeep Kumar in SQL Server on Dec 19 2015
  • Mukesh Kumar
    Sep, 2017 3

    create table tb ()

    • 0
  • Mohsin Azam
    Aug, 2016 11

    Create Table tbl_User ( Id Int Not null Identity(1,1) Primary key , UserName varchar(50) )

    • 0
  • Chetan Raiyani
    Jun, 2016 5

    create Table TableName ( Col1 DataType )

    • 0
  • Munesh Sharma
    May, 2016 31

    CREATE TABLE table_name ( column_name1 data_type(size), column_name2 data_type(size), column_name3 data_type(size), .... );

    • 0
  • Amit Kumar Singh
    Mar, 2016 11

    Create Table table_name (// all columns with data type will goes here )

    • 0
  • Amit Parmar
    Mar, 2016 11

    create Table ( [Size]);

    • 0
  • Ravi Patel
    Dec, 2015 29

    eaxamplecreate table Emp(id int identity(1,1), name varchar(50),sal int)

    • 0
  • Sandeep Kumar
    Dec, 2015 19

    Syntax for creating new table is: create table table name(column name data type(size)) Ex: create table EmployeeDetails(Eid int,EName varchar(20))

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS