back

by levkk·1y ago·view on hn ↗
You just need to quote your identifiers with double quotes, e.g.:

    SELECT * FROM "MyTable"
You can even use reserved SQL keywords in table/column names as long as they are double-quoted.
1 comments
With quotes you can even use spaces in table and column names.