我是編程和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.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