-
Notifications
You must be signed in to change notification settings - Fork 664
Literals
Andrey Gershun edited this page May 28, 2015
·
3 revisions
You can use these characters for databases, tables, and other objects names:
- A-Z
- a-z
- _ (underscore)
- 0-9 (except first character)
For example:
CREATE TABLE students_a (
_id serial NOT NULL,
na_me nvarchar(50) NOT NULL,
CONSTRAINT students_pkey PRIMARY KEY (_id)
);
See the example in jsFiddle
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo