SQL News

Browse SQL updates sorted by latest

Understanding NULL in BigQuery SQL

Understanding NULL in BigQuery SQL

8 months ago

NULL in SQL represents the absence of a value, distinct from an empty string or zero. Key points include: NULL cannot be tested in a list, comparisons like NULL = NULL are not allowed, COUNT(column) excludes NULLs while COUNT(*) includes them, aggregate functions ignore NULLs, ORDER BY places NULLs first by default, and joins do not match NULLs. Handling NULLs can be done using IS NULL, COALESCE, IFNULL/ISNULL, and NULLIF.

Constantin Lungu
Constantin Lungu

Top Creator

Top BigQuery Creator

Constantin Lungu is a Top BigQuery Creator. Part of Swipe Insight Select, a curated list of top creators.

Top BigQuery Creator
Understanding the Difference: WHERE vs HAVING in SQL

Understanding the Difference: WHERE vs HAVING in SQL

9 months ago

In SQL, WHERE and HAVING differ in their application timing. WHERE is used before aggregation, while HAVING is used after. If 'quantity' is filtered in the HAVING clause, it refers to the SUM of quantities per country bucket, not the original 'quantity'. It's suggested to rename the aggregated column (e.g., 'total_quantity') for clarity. The choice between WHERE and HAVING depends on the need for filtering before or after aggregation.

Constantin Lungu
Constantin Lungu

Top Creator

Top BigQuery Creator

Constantin Lungu is a Top BigQuery Creator. Part of Swipe Insight Select, a curated list of top creators.

Top BigQuery Creator
Simplify SQL Queries with the DECLARE Command

Simplify SQL Queries with the DECLARE Command

9 months ago

The DECLARE command in SQL can simplify queries with varying parameters. Instead of repeatedly using a WHERE statement for different time periods, you can declare variables before your query and adjust them for the desired timeframe. For instance, you can assign names to your variables along with their respective data types, such as '@start_date' and '@end_date' storing 'date' data type.

Top-Notch Google Ads Audit Tool

Top-Notch Google Ads Audit Tool

Featured

Effortlessly audit your Google Ads account with Marketing Auditor. Perform 200+ automated checks to uncover optimization opportunities and save over 10 hours per audit. Generate white-label reports in minutes with 50+ pages of actionable insights. Customize your reports with professional themes or your own branding, and export them in editable formats like PowerPoint or Google Slides. This tool is the ultimate solution for efficient and impactful Google Ads audits.

FAQs