Please help me to insert multiple record in a single statement and what the max record I can insert in one statement. The below is what I been doing for inserting a as a signal record.
Insert into emp123
(first, last, age)values
('Charles', 'Smith', 26);
Thanks in advance
Insert into emp123
(first, last, age)values
('Charles', 'Smith', 26);
Thanks in advance