Blog Pages

Insert default values to table

-- Insert default values to specific column:
INSERT INTO StamTable (StamTableStr, StamTableInt) VALUES ('example1', DEFAULT)

-- Insert default values to all columns in the table:
INSERT INTO StamTable DEFAULT VALUES

No comments:

Post a Comment