📄 normalizetodoc.query.resgood
字号:
SELECT x.* FROM x WHERE x.A = '1' OR x.B = '2' AND NOT x.D = '3' OR x.E = '4' AND x.C = '5'-----Statement after normalizeSELECT x.* FROM x WHERE x.A = '1' AND x.C = '5' OR NOT x.D = '3' AND NOT x.E = '4' AND x.B = '2' AND x.C = '5'-----Traversing the predicates-----Top predicate is not simple: x.A = '1' AND x.C = '5' OR NOT x.D = '3' AND NOT x.E = '4' AND x.B = '2' AND x.C = '5'-----2nd level predicate is simple: x.A = '1'-----2nd level predicate is simple: x.C = '5'-----2nd level predicate is simple: NOT x.D = '3'-----2nd level predicate is simple: NOT x.E = '4'-----2nd level predicate is simple: x.B = '2'-----2nd level predicate is simple: x.C = '5'======================================14-----Statement before normalizeSELECT class.* FROM class WHERE NOT class.propA IS NULL AND class.propB = 'this'-----Statement after normalizeSELECT class.* FROM class WHERE NOT class.propA IS NULL OR NOT class.propB = 'this'-----Traversing the predicates-----Top predicate is not simple: NOT class.propA IS NULL OR NOT class.propB = 'this'-----2nd level predicate is simple: NOT class.propA IS NULL -----2nd level predicate is simple: NOT class.propB = 'this'======================================15-----Statement before normalizeSELECT class.* FROM class WHERE NOT class.propA ISA class AND class.propB LIKE 'this'-----Statement after normalizeSELECT class.* FROM class WHERE NOT class.propA ISA class OR NOT class.propB LIKE 'this'-----Traversing the predicates-----Top predicate is not simple: NOT class.propA ISA class OR NOT class.propB LIKE 'this'-----2nd level predicate is simple: NOT class.propA ISA class-----2nd level predicate is simple: NOT class.propB LIKE 'this'======================================16-----Statement before normalizeSELECT x.* FROM x WHERE x.A IS NOT NULL -----Statement after normalizeSELECT x.* FROM x WHERE x.A IS NOT NULL -----Traversing the predicates-----Top predicate is simple: x.A IS NOT NULL ======================================17-----Statement before normalizeSELECT x.* FROM x WHERE x.A IS NULL AND x.B IS NULL AND NOT x.C IS NULL -----Statement after normalizeSELECT x.* FROM x WHERE x.A IS NULL AND x.B IS NULL AND NOT x.C IS NULL -----Traversing the predicates-----Top predicate is not simple: x.A IS NULL AND x.B IS NULL AND NOT x.C IS NULL -----2nd level predicate is simple: x.A IS NULL -----2nd level predicate is simple: x.B IS NULL -----2nd level predicate is simple: NOT x.C IS NULL ======================================18-----Statement before normalizeSELECT x.* FROM x WHERE x.A LIKE 'this' AND x.B LIKE 'that'-----Statement after normalizeSELECT x.* FROM x WHERE x.A LIKE 'this' AND x.B LIKE 'that'-----Traversing the predicates-----Top predicate is not simple: x.A LIKE 'this' AND x.B LIKE 'that'-----2nd level predicate is simple: x.A LIKE 'this'-----2nd level predicate is simple: x.B LIKE 'that'======================================19-----Statement before normalizeSELECT x.* FROM x WHERE x.A LIKE '1' OR x.B = '2' AND x.D = '3' OR x.E IS NOT NULL AND x.C LIKE '5'-----Statement after normalizeSELECT x.* FROM x WHERE x.A LIKE '1' AND x.C LIKE '5' OR x.D = '3' AND x.B = '2' AND x.C LIKE '5' OR x.E IS NOT NULL AND x.B = '2' AND x.C LIKE '5'-----Traversing the predicates-----Top predicate is not simple: x.A LIKE '1' AND x.C LIKE '5' OR x.D = '3' AND x.B = '2' AND x.C LIKE '5' OR x.E IS NOT NULL AND x.B = '2' AND x.C LIKE '5'-----2nd level predicate is simple: x.A LIKE '1'-----2nd level predicate is simple: x.C LIKE '5'-----2nd level predicate is simple: x.D = '3'-----2nd level predicate is simple: x.B = '2'-----2nd level predicate is simple: x.C LIKE '5'-----2nd level predicate is simple: x.E IS NOT NULL -----2nd level predicate is simple: x.B = '2'-----2nd level predicate is simple: x.C LIKE '5'======================================20-----Statement before normalizeSELECT x.* FROM x WHERE x.A <> '1' OR x.B ISA Xclass AND x.D = '3' OR x.E = '4' AND x.C IS NULL -----Statement after normalizeSELECT x.* FROM x WHERE x.A <> '1' AND x.C IS NULL OR x.D = '3' AND x.B ISA Xclass AND x.C IS NULL OR x.E = '4' AND x.B ISA Xclass AND x.C IS NULL -----Traversing the predicates-----Top predicate is not simple: x.A <> '1' AND x.C IS NULL OR x.D = '3' AND x.B ISA Xclass AND x.C IS NULL OR x.E = '4' AND x.B ISA Xclass AND x.C IS NULL -----2nd level predicate is simple: x.A <> '1'-----2nd level predicate is simple: x.C IS NULL -----2nd level predicate is simple: x.D = '3'-----2nd level predicate is simple: x.B ISA Xclass-----2nd level predicate is simple: x.C IS NULL -----2nd level predicate is simple: x.E = '4'-----2nd level predicate is simple: x.B ISA Xclass-----2nd level predicate is simple: x.C IS NULL ======================================21-----Statement before normalizeSELECT class.* FROM class WHERE NOT NOT class.x LIKE 'this' OR class.x LIKE 'that'-----Statement after normalizeSELECT class.* FROM class WHERE class.x LIKE 'this' AND NOT class.x LIKE 'that'-----Traversing the predicates-----Top predicate is not simple: class.x LIKE 'this' AND NOT class.x LIKE 'that'-----2nd level predicate is simple: class.x LIKE 'this'-----2nd level predicate is simple: NOT class.x LIKE 'that'======================================22-----Statement before normalizeSELECT class.* FROM class WHERE NOT 'aa' LIKE 'bb'-----Statement after normalizeSELECT class.* FROM class WHERE NOT 'aa' LIKE 'bb'-----Traversing the predicates-----Top predicate is simple: NOT 'aa' LIKE 'bb'======================================23-----Statement before normalizeSELECT class.* FROM class WHERE NOT class ISA Aclass-----Statement after normalizeSELECT class.* FROM class WHERE NOT class ISA Aclass-----Traversing the predicates-----Top predicate is simple: NOT class ISA Aclass======================================24-----Statement before normalizeSELECT class.* FROM class WHERE NOT class.prop IS NULL -----Statement after normalizeSELECT class.* FROM class WHERE NOT class.prop IS NULL -----Traversing the predicates-----Top predicate is simple: NOT class.prop IS NULL ======================================25-----Statement before normalizeSELECT class.* FROM class WHERE NOT class.prop IS NULL -----Statement after normalizeSELECT class.* FROM class WHERE NOT class.prop IS NULL -----Traversing the predicates-----Top predicate is simple: NOT class.prop IS NULL ======================================26-----Statement before normalizeSELECT class.* FROM class WHERE class.prop LIKE 'this'-----Statement after normalizeSELECT class.* FROM class WHERE class.prop LIKE 'this'-----Traversing the predicates-----Top predicate is simple: class.prop LIKE 'this'======================================27-----Statement before normalizeSELECT class.* FROM class WHERE NOT class.prop IS NULL -----Statement after normalizeSELECT class.* FROM class WHERE NOT class.prop IS NULL -----Traversing the predicates-----Top predicate is simple: NOT class.prop IS NULL
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -