Random Data Entry
|
The adjacent data entry we have been using requires that you know the
position of each column. The SQL provides an alternative that allows you to perform
data entry using the name of a column instead of its position. This allows you to
provide the values of fields in any order of your choice.
To perform data entry at random, you must provide a list of the
columns of the
table in the order of your choice. You can either use all columns or provide a
list of the same columns but in your own order. In the same way, you don't have
to provide data for all fields, just those you want, in the order you want. To do this, enter the
names of the desired columns on the right side of the name of the table, in
parentheses. The syntax used would be:
INSERT TableName(ColumnName1, Columnname2, ColumnName_n) VALUES(ValueFormColumnName1, ValueFormColumnName2, ValueFormColumnName_n); |
|
- To enter data in an order of your choice, execute the following statement:
INSERT StaffMembers(FullName, Married, EmplNo, Ext, Salary, DateHired) VALUES('Helene Maud', 1, 8, 115, 20.05, '2001-08-04');
- Execute the following statement:
INSERT INTO StaffMembers (FullName, WorkPhone, EmplNo) VALUES('Mark Rhoades', '(301) 726-2212', 9);
No comments:
Post a Comment