https://github.com/fibo/sql92-keywords
is the list of reserved words in SQL92 specification
https://github.com/fibo/sql92-keywords
sql
Last synced: 12 months ago
JSON representation
is the list of reserved words in SQL92 specification
- Host: GitHub
- URL: https://github.com/fibo/sql92-keywords
- Owner: fibo
- License: mit
- Created: 2018-04-22T19:11:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-22T19:18:17.000Z (almost 8 years ago)
- Last Synced: 2025-03-27T19:29:14.999Z (about 1 year ago)
- Topics: sql
- Homepage: http://g14n.info/SQL92-keywords
- Size: 3.91 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SQL92-keywords
> is the list of reserved words in SQL92 specification
[Installation](#installation) |
[Usage](#usage) |
[License](#license)
## Installation
With [npm](https://npmjs.org/) do
```bash
npm install sql92-keywords
```
## Usage
Get keywords list.
```javascript
const keywords = require('sql92-keywords')
```
Note that all keywords are in upper case.
```javascript
keywords.indexOf('SELECT') > -1 // true
keywords.indexOf('Select') > -1 // false
```
## License
[MIT](http://g14n.info/mit-license/)