
|
If you were logged in you would be able to see more operations.
|
|
|
|
if there is a table, all values are set by default-values or by an before-insert-trigger I think it should be possible to insert a row without any given values:
INSERT INTO table;
|
|
Description
|
if there is a table, all values are set by default-values or by an before-insert-trigger I think it should be possible to insert a row without any given values:
INSERT INTO table; |
Show » |
|
INSERT INTO <table> DEFAULT VALUES;
and I agree it could be supported. But as for triggers, it's impossible as the INSERT statement has no knowledge about them.