Skip to content

Instantly share code, notes, and snippets.

View WishmaL's full-sized avatar
🏠
Working from home

Wishma L Herath WishmaL

🏠
Working from home
View GitHub Profile
@WishmaL
WishmaL / mongodb_cheat_sheet.md
Created November 25, 2020 06:12 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@WishmaL
WishmaL / mysql_cheat_sheet.md
Created February 16, 2020 11:46 — forked from bradtraversy/mysql_cheat_sheet.md
MySQL Cheat Sheet

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

#include <stdio.h>
#include <stdlib.h>
int main()
{
int row,col,num;//define the variables
printf("Enter a number:\n");//get a number from the user
scanf("%d",&num);