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
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| margin: 0px; | |
| padding: 0px; | |
| } | |
| </style> | |
| </head> |
| [react-redux-typescript-guide](https://github.com/piotrwitek/react-redux-typescript-guide) | |
| [FAQ](http://redux.js.org/docs/FAQ.html) | |
| [Redux Actions in typescript](https://spin.atomicobject.com/2017/07/24/redux-action-pattern-typescript/) | |
| ```typescript | |
| export enum TypeKeys { | |
| INC = 'INC', | |
| DEC = 'DEC', | |
| OTHER_ACTION = '__any_other_action_type__' | |
| } |