miscerrors.out

来自「derby database source code.good for you.」· OUT 代码 · 共 32 行

OUT
32
字号
ij> ---- this test is for miscellaneous errors---- lexical errorselect @#^%*&! from swearwords;ERROR 42X02: Lexical error at line 6, column 8.  Encountered: "@" (64), after : "".ij> ---- try to create duplicate table--create table a (one int);0 rows inserted/updated/deletedij> create table a (one int, two int);ERROR X0Y32: Table/View 'A' already exists in Schema 'APP'.ij> create table a (one int);ERROR X0Y32: Table/View 'A' already exists in Schema 'APP'.ij> drop table a ;0 rows inserted/updated/deletedij> create table a (one int, two int, three int);0 rows inserted/updated/deletedij> insert into a values (1,2,3);1 row inserted/updated/deletedij> select * from a;ONE        |TWO        |THREE      -----------------------------------1          |2          |3          ij> drop table a;0 rows inserted/updated/deletedij> -- set isolation to repeatable readset isolation serializable;0 rows inserted/updated/deletedij> 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?