snack-query-builder
Version:
Query generator for SQL
23 lines (22 loc) • 587 B
TypeScript
import { ConsoleColor } from './console-cf';
export declare const KeyWordsSQL: {
select: ConsoleColor;
where: ConsoleColor;
'group by': ConsoleColor;
from: ConsoleColor;
having: ConsoleColor;
' as ': ConsoleColor;
' on ': ConsoleColor;
' join ': ConsoleColor;
'inner join': ConsoleColor;
' in ': ConsoleColor;
' = ': ConsoleColor;
' <> ': ConsoleColor;
' between ': ConsoleColor;
' > ': ConsoleColor;
' < ': ConsoleColor;
' >= ': ConsoleColor;
' <= ': ConsoleColor;
'\\)': ConsoleColor;
'\\(': ConsoleColor;
};