User Profile

Collapse

Profile Sidebar

Collapse
PRODIKEY
PRODIKEY
Last Activity: Sep 29 '10, 12:01 PM
Joined: Sep 26 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • PRODIKEY
    replied to Incorrect syntax near ','.
    Thanks I found my mistake..

    INSERT INTO TUTOR(TutorName ,TutorContact,Q ualification)
    SELECT TutorName,Tutor Contact,Qualifi cation
    FROM NEW_TUTOR;

    *Remove the () under select statement
    See more | Go to post

    Leave a comment:


  • PRODIKEY
    started a topic Incorrect syntax near ','.

    Incorrect syntax near ','.

    I wanna to try BULK Insert from NEW_TUTOR to TUTOR and below are my sql statement :

    Code:
    CREATE Table TUTOR(
    TutorName	varChar(100)	NOT NULL,
    TutorContact	Numeric(8)	NOT NULL,
    TutorAddress	Text		NULL,
    Qualification	varChar(10)	NULL DEFAULT 'Degree',
    CONSTRAINT	TutorNamePK	PRIMARY KEY(TutorName)
    );
    
    CREATE Table NEW_TUTOR(
    TutorName	varChar(100)	NOT NULL,
    TutorContact	Numeric(8)	NOT
    ...
    See more | Go to post
    Last edited by Niheel; Sep 29 '10, 06:33 PM.
No activity results to display
Show More
Working...