I have weird issue when I do
`temp=# \d
List of relations
Schema | Name | Type | Owner
--------+-------------------------------+----------+-----------------
public | ORDER | table | admin
public | ORDER_id_seq | sequence | admin `
As the table list as shown above. The table name ORDER is coming but when I try to drop it, I get the syntax error as
temp=# drop table ORDER;
ERROR: syntax error at or near "ORDER"
LINE 1: drop table ORDER;
What is the issue and what is other way to drop ORDER table?