This post have all the query and synatx which a biggner and experianced SQL users need to know and use in their daily working Life for inserting the data without index.
Insert Into:
1- insert query when index column is exists in Table
Insert into 'table_name' (Column_1,Column_2,......,Column_n) Values (Values_1,Val_2,.....,Val_n);
Initial Table - Table Name- User_Detail
Insert into User_Detail
(User_name,User_Mobile,User_email_id,Pin_code)
Values('Programming Logic World',1234512345,'programminglogicworld@gmail.com',123456);
No comments:
Post a Comment