Is it possible to create a table with column name containing space? If so how can I create and use it?
it is possible by naming the column between two " example: "My columN" , the column name becomes case sensitive which means.
"
SELECT "my column" from table; --NOT OK SELECT "My columN" from table; --OK