Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fibo/sql92-keywords
is the list of reserved words in SQL92 specification
https://github.com/fibo/sql92-keywords
sql
Last synced: about 1 month 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-04-22T19:18:17.000Z (over 6 years ago)
- Last Synced: 2024-10-04T21:06:31.952Z (about 2 months ago)
- Topics: sql
- Homepage: http://g14n.info/SQL92-keywords
- Size: 3.91 KB
- Stars: 6
- Watchers: 3
- 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/)