top of page
Topic
Recent Posts
Archive
Tags
In honor of Lothar Collatz
In 1937, a German mathematician named Lothar Collatz formulated an intriguing hypothesis (it still remains unproven) which can be...
sqrt() and int()
sqrt() function is an inbuilt function in Python programming language that returns the square root of any number. Syntax: math.sqrt(x)...
For loops
Official definition: https://wiki.python.org/moin/ForLoop Picture source: https://www.python-course.eu/python3_loops.php for loops are...
break and continue
break - exits the loop immediately, and unconditionally ends the loop's operation; the program begins to execute the nearest instruction...
sleep()
The sleep() function suspends (waits) execution of the current thread for a given number of seconds. Python has a module named time which...
while i and for i in range ()
While Loop is used to repeat a block of code. Instead of running the code block once, It executes the code block multiple times until a...
Multi-line printing
You can use triple quotes to print strings on multiple lines in order to make text easier to read, or create a special text-based design....
Inner Join (vs Inline TVF)
Let’s consider a query that combines data from multiple tables to produce the query plan. The Hash Match (Inner Join) operator combines...
Data change recording
SQL Server 2019 (15.x) provides two features that track changes to data in a database: change data capture and change tracking. These...
The backstage architecture
Many recent sessions emphasize the role of Query Store. Today, I attended another session regarding Query Store. The topic of the session...
bottom of page