Thursday, April 2, 2009

Inserting selected attribute values into a Table

Just imagine you’ve five fields (columns) in table & you only want to insert 2 values (say, in Col2 & Col3) of the table; then use as follows:

   1: INSERT INTO Table_Name (Col2_Name, Col3_Name)
   2:     VALUES (Col2_Value, Col3_Value)

No comments:

 
Best viewed in Internet Explorer 8.