Estou utilizando o db “fake” do java para realizar alguns testes, porém não consigo criar a tabela alguém pode me ajudar ?
Já tentei utilizar o nome da coluna sem as " " porém não funcionou também.
CREATE TABLE tb_Usuario(
“UserId” INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
“UserNome” varchar (255) not null,
“UserSobrenome” varchar (255) not null,
“UserCpf” integer (11) not null,
“UserTelefone” integer (12),
“UserCelular” integer (12) not null,
“UserEndereco” varchar(255) not null,
“UserComplemento” varchar (255),
“UserCidade” varchar (255) not null,
“UserEstado” varchar (255) not null,
“UserCep” varchar(9) not null,
“UserEmail” varchar(200) not null,
“UserNascimento” Date
);
ERRO : Código do erro -1, estado do SQL 42X01: Erro de sintaxe: Encountered “(” at line 5, column 19.
Linha 1, coluna 1