I am trying to create a table (shown below) for my final year project, but I encountered SQL name conflict error. It seems the words 'User' and 'role' are reserved by the SQL. Is there any way I can resolve the issue, without renaming the words.
CREATE TABLE User
(
ID INT generated by default as identity PRIMARY KEY,
username varchar(45) NOT NULL,
password varchar(255) NOT NULL,
role varchar(255) NOT NULL
);