Last active
June 8, 2017 11:19
-
-
Save timruffles/9c7bdc8916e977deb3b8fe44f1aa92ad to your computer and use it in GitHub Desktop.
I tried to find a limit to Posgres's table+column names. There is none! π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scratch=# create table "delete from account;" ("""id""" text primary key, "sutff %\n" text, "&" text, "1" text, U&"\+01F600" text); | |
CREATE TABLE | |
scratch=# \d "delete from account;" | |
Table "public.delete from account;" | |
Column | Type | Modifiers | |
-----------+------+----------- | |
"id" | text | not null | |
sutff %\n | text | | |
& | text | | |
1 | text | | |
π | text | | |
Indexes: | |
"delete from account;_pkey" PRIMARY KEY, btree ("""id""") | |
scratch=# delete from "delete from account;"; | |
delete 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment