ID列を持つテーブルを作成しようとしています。私は以下のクエリを使用しました。 mysqlサーバ5.6を使用しています。mysqlサーバ5.6を使用してテーブルのIDカラムを追加する方法は?
create table t1
{
id int identity(1,1) Primary key
name varchar2(10)
};
が、それは以下のエラーを示しています
は親切な構文で私を助けて。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 '{ id int identity(1,1) Primary key name varchar2(10) }' at line 2
http://www.w3schools.com/php/php_mysql_create_table.asp