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
User Profile
Collapse
-
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
Last edited by Niheel; Sep 29 '10, 06:33 PM.
No activity results to display
Show More
Leave a comment: