SQL-NOSQL CHEAT Sheet
SQL-NOSQL CHEAT Sheet
SQL-NOSQL CHEAT Sheet
🔗 Joining Tables
👥 User Management
SQL Server:
IDENTITY – Auto-increment a column's value
TOP – Limit the number of rows returned
Oracle:
ROWNUM – Limit the number of rows returned
SEQUENCE – Create a sequence for generating unique numbers
NEXTVAL – Get the next value of a sequence
PostgreSQL:
SERIAL – Auto-increment a column's value
LIMIT & OFFSET – Limit the number of rows returned and skip rows
MySQL:
AUTO_INCREMENT – Auto-increment a column's value
LIMIT & OFFSET – Limit the number of rows returned and skip rows
SHOW TABLES – List all tables in the current database
DESCRIBE TABLE – Display a table's structure
--------------------------------------------------------------------------------------------------------------------
🔎 CRUD Operations
📂 MongoDB Specific
🌟 Cassandra Specific
🔗 Neo4j Specific
💡 Redis Specific
🌐 Couchbase Specific