📄 miscerrors.out
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -