sql92-keywords
v1.0.1
Published
is the list of reserved words in SQL92 specification
Downloads
8
Readme
SQL92-keywords
is the list of reserved words in SQL92 specification
Installation | Usage | License
Installation
With npm do
npm install sql92-keywords
Usage
Get keywords list.
const keywords = require('sql92-keywords')
Note that all keywords are in upper case.
keywords.indexOf('SELECT') > -1 // true
keywords.indexOf('Select') > -1 // false