MySQL / MariaDB & MongoDB
Everything about MySQL / MariaDB and MongoDB
How to do Everything in MySQL/MariaDB
Useful Tricks Convert a Column to Uppercase UPDATE table_name SET column_name = UPPER( column_n...
Setup for Remote Access
Grant Privileges GRANT ALL ON <database>.* TO <user>@'%' IDENTIFIED BY '<pa...
Basic MongoDB Operations
Queries and Indexes Display query stats db.<collection>.find({<query conditions>})....