About 348 results
Open links in new tab
  1. SQL Basics Cheat Sheet. AGGREGATION AND GROUPING. GROUP BY. groups together rows that have the same values in specified columns. It. computes summaries (aggregates) for each unique combination of values. CITY id

  2. SQL Basics Cheat Sheet - LearnSQL.com

    Sep 25, 2020 · Download this 2-page SQL Basics Cheat Sheet in PDF or PNG format, print it out, and stick to your desk. The SQL Basics Cheat Sheet provides you with the syntax of all basics clauses, shows you how to write different conditions, and has examples.

  3. SQL Basics Cheat Sheet. FILTERING THE OUTPUT. COMPARISON OPERATORS. Fetch names of cities that have a rating above 3: SELECT name FROM city WHERE rating > 3; Fetch names of cities that are neither Berlin nor Madrid: SELECT. name FROM city WHERE name != 'Berlin' AND name != 'Madrid'; TEXT OPERATORS. Fetch names of cities that start with a 'P' or ...

  4. Jun 1, 2021 · SELECT REPLACE('LearnSQL.com', 'SQL', 'Python');-- result: LearnPython.com. NUMERIC FUNCTIONS. BASIC OPERATIONS. Use +, -, *, / to do some basic math. To get the number of seconds in a week: SELECT 60 * 60 * 24 * 7; -- result: 604800. CASTING. From time to time, you need to change the type of a number. The . CAST() function is there to help you ...

  5. The Complete Beginner’s Guide to SQL Fundamentals

    Feb 21, 2017 · This guide will simplify the basics of SQL, making it accessible for beginners. Whether you're looking to gain a basic understanding or expand your skills with more advanced concepts, this guide covers the key areas you'll need.

  6. SQL Server Cheat Sheet. MODIFYING TABLES. Use the . ALTER TABLE. or the EXEC statement to modify a table structure. To change a table name: EXEC sp_rename 'AnimalSchema.Animal', 'Pet' To add a column to a table: ALTER TABLE Animal ADD COLUMN Name VARCHAR(64); To change a column name: EXEC sp_rename 'AnimalSchema.Animal.Id', 'Identifier', 'COLUMN';

  7. 20 Basic SQL Query Examples for Beginners - LearnSQL.com

    Aug 17, 2023 · An overview of the 20 basic SQL query examples that every SQL beginner should master before going to the more advanced SQL concepts.

  8. SQL Cheat Sheets - LearnSQL.com

    Sep 26, 2024 · Download this 2-page SQL Basics Cheat Sheet in PDF or PNG format, print it out, and stick to your desk. The SQL Basics Cheat Sheet provides you with the syntax of all basics clauses, shows you how to write different conditions, and has examples.

  9. Introducing Our New Ultimate SQL Cheat Sheet! - LearnSQL.com

    Feb 2, 2023 · After going through a few courses and with some help of the SQL Basics Cheat Sheet, I’ve upgraded most of my marketing processes to a whole new productivity level. The SQL Basics Cheat Sheet provides you with the syntax of all …

  10. Standard SQL Functions Cheat Sheet - LearnSQL.com

    Aug 25, 2021 · Your quick guide to SQL functions! Download the cheat sheet in PDF or PNG for syntax reference, examples, and tips.

Refresh