Is it possible to insert multiple values in a table with the same data except from the primary key (ID
)?
For instance:
INSERT INTO apples (name, color, quantity)
VALUES of(txtName, txtColor, txtQuantity)
Is it possible to insert 50 red apples with different IDs?
ID(PK) |Name | Color | Quantity
1 apple red 1
2 apple red 1
Is it possible like this?