Introduction:
sQL is the standard language for manipulating and managing relational database.It is used to interact to database to perform tasks like querying,deleting and updating data.
Errors in postgresql:
- syntax error or near" "
- column "column_name" does not exist
- relation"table_name" does not exist
- syntax error at end of input
syntax error or near" ":
Incorrect sql syntax such as missing or misplaced keywords.
column "column_name" does not exist:
The table you referring that does not exist in the table.
relation"table_name" does not exist:
The table that you are referring is does not exist or is spell incorrectly.
syntax error at end of input:
Missing semicolon at the end of sql statement.
Top comments (0)