私はプログラミングとSQLの初心者です。テーブルを作成中にこのエラーが発生するのはなぜですか?PostgreSQL:または ";"の構文エラー
fishies=> create table vamshi(text, serial);
ERROR: syntax error at or near ";"
LINE 1: create table vamshi(text, serial);
私はプログラミングとSQLの初心者です。テーブルを作成中にこのエラーが発生するのはなぜですか?PostgreSQL:または ";"の構文エラー
fishies=> create table vamshi(text, serial);
ERROR: syntax error at or near ";"
LINE 1: create table vamshi(text, serial);
テキストとシリアルの間にコンマは必要ありません。
https://www.postgresql.org/docs/current/static/sql-createtable.html
おそらく、あなたは(https://www.tutorialspoint.com/postgresql/postgresql_create_table.htm)[テーブルのチュートリアルを作成する]が必要ですか?列の型はありますが、名前はありませんか? –
https://www.postgresql.org/docs/current/static/tutorial-table.html –
[create table](https://www.postgresql.org/docs/9.4/static/sql-createtable)を使用しています。 .html)。それは少し混乱しています。 – Vamshi