steps of inserting a table having 5 rows and 5 columns in it
Answers
Answered by
4
Answer:
25 right???????????????
Answered by
3
Answer: insert into tablename ( all columns )
values (values for all columns in above line )
Explanation:
Consider table student (sid, firstname, lastname, class, email ).
We use
insert into student (sid, firstname, lastname, class, email)
values (101, Rashii, 19, 12, [email protected]);
We mention all columns in the table.
We take values for all columns in the given table.
Number of insert statement = number of rows to be inserted
In this question, we need 5 insert statement like above for 5 rows.
Similar questions