/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

modern-sql.com
| | blog.jooq.org
2.9 parsecs away

Travel
| | Everyone knows the SQL SUM() aggregate function (and many people also know its window function variant). When querying the Sakila database, we can get the daily revenue (using PostgreSQL syntax): WITH p AS ( SELECT CAST (payment_date AS DATE) AS date, amount FROM payment ) SELECT date, SUM (amount) AS daily_revenue, SUM (SUM (amount)) OVER
| | www.sqlshack.com
4.5 parsecs away

Travel
| | In this blog post we will show you step by step some tips and tricks for successful Query optimization techniques in SQL Server.
| | php.watch
5.9 parsecs away

Travel
| | PHP 8.0: Attributes
| | huonw.github.io
19.8 parsecs away

Travel
| A short summary of the Sized trait and dynamically sized types in Rust.