2017-08-02 12 views
0

私はプログラミングとSQLの初心者です。テーブルを作成中にこのエラーが発生するのはなぜですか?PostgreSQL:または ";"の構文エラー

fishies=> create table vamshi(text, serial); 
ERROR: syntax error at or near ";" 
LINE 1: create table vamshi(text, serial); 
+2

おそらく、あなたは(https://www.tutorialspoint.com/postgresql/postgresql_create_table.htm)[テーブルのチュートリアルを作成する]が必要ですか?列の型はありますが、名前はありませんか? –

+0

https://www.postgresql.org/docs/current/static/tutorial-table.html –

+0

[create table](https://www.postgresql.org/docs/9.4/static/sql-createtable)を使用しています。 .html)。それは少し混乱しています。 – Vamshi

答えて

-1

テキストとシリアルの間にコンマは必要ありません。

https://www.postgresql.org/docs/current/static/sql-createtable.html

+0

私は同じリンクを使用しています。今私はそれを得た。 – Vamshi

+0

聞いてよかったです。カンマを使用してフィールドを区切ります。 – kometen

+0

リンクは良いですが、答えが間違っています:「テキスト」という名前の単一の列を持つテーブルを作成する場合を除き、カンマが必要です。むしろ、列名を追加する必要があります。 –

関連する問題