Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| [ | |
| { | |
| "abbr": "AL", | |
| "name": "Alabama", | |
| "capital": "Montgomery", | |
| "lat": "32.361538", | |
| "long": "-86.279118" | |
| }, | |
| { | |
| "abbr": "AK", |
| // Construct Single Node | |
| class Node { | |
| constructor(data, next = null) { | |
| this.data = data; | |
| this.next = next; | |
| } | |
| } | |
| // Create/Get/Remove Nodes From Linked List | |
| class LinkedList { |
| const express = require('express'); | |
| const fetch = require('node-fetch'); | |
| const redis = require('redis'); | |
| const PORT = process.env.PORT || 5000; | |
| const REDIS_PORT = process.env.REDIS_PORT || 6379; | |
| const client = redis.createClient(REDIS_PORT); | |
| const app = express(); |
| const express = require('express'); | |
| const fetch = require('node-fetch'); | |
| const redis = require('redis'); | |
| const PORT = process.env.PORT || 5000; | |
| const REDIS_PORT = process.env.PORT || 6379; | |
| const client = redis.createClient(REDIS_PORT); | |
| const app = express(); |