Inserting row without parameters

% mbp mysql -uroot  foo                                            [~] Tue 1 6:47
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.5.16 MySQL Community Server (GPL)

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> create table x ( id int unsigned auto_increment not null );
ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
mysql> 
mysql> create table x ( id int unsigned auto_increment not null primary key);
Query OK, 0 rows affected (0.15 sec)

mysql> insert into x () values ();
Query OK, 1 row affected (0.05 sec)

mysql> insert into x default values;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'default values' at line 1
mysql> select * from x;
+----+
| id |
+----+
|  1 |
+----+
1 row in set (0.03 sec)
mysql> Bye
mbp sqlite3 foo.db                                               [~] Tue 1 6:48
SQLite version 3.6.22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table x ( id integer not null primary key );
sqlite> insert into x () values ();
Error: near ")": syntax error
sqlite> insert into x default values;
sqlite> select * from x;
1
sqlite> 
Copyright (c) 2000, 2011, Oracle and/or its affiliate

Published: 2011-10-31(Mon) 21:50