A work-in-progress SQL parser written in TypeScript
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678
  1. import { Identifier } from "./ast/identifier";
  2. import { Number as _Number } from "./ast/number";
  3. export * from "./ast/identifier";
  4. export * from "./ast/number";
  5. export * from "./ast/statement";
  6. export type Primary = _Number | Identifier;