Publog Developer Blog of Shivishbrahma

Posts tagged with #cheatsheet

Snowflake SQL Cheatsheet

SQL Essentials Joins Join Type Description Syntax INNER Returns rows that match on both sides of the join SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column LEFT Returns all rows from the left table, and the matched rows from the right table SELECT * FROM table1 LEFT...

Python Core Cheatsheet

Date and Time Date Directives Format Meaning Example %Y Year (4 digits) 2025 %y Year (2 digits) 25 %m Month (01-12) 07 %B Full month name July %b Abbreviated month name Jul %d Day of the month (01–31) 17 %j Day of year (001–366) 198 %A Full weekday name Thursday...