How to create variable with two word separated by space in Postgresql.
CREATE TABLE Test(
Partner varchar(10) NULL,
"[Partner Name]" varchar (200) NULL,
"[Contract Number]" varchar(15) NULL,
"[Customer Name]" varchar(150) NULL,
"[Lease Start]" Date date NULL
From maintable
This is not working. How to give variables with 2 words separated by space. Please help