Results for "Basic"

10 / 184 posts

Basic of DAX query

// How to check null ISBLANK(EmployeeDetails[DateofLeaving]) //if condition IF(ISBLANK(EmployeeDetails[DateofLeaving]),TODAY(),EmployeeDetails&#0…

IF ISBLANK ISBLANK()
Mar 19, 2026 1 min read

Markdown Cheat Sheet

Basic Syntax These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements. Element Markdown …

blogging markdown notes
Mar 19, 2026 1 min read

Python Basic

py --version python --version # \n : Newline # \t : Tab # \\ : Backslash # \" : Double quote # \' : Single quot print("Hello, World!\nThis is a new line.")…

Variable Python
Mar 19, 2026 6 min read

Basic Functions in Power BI

SUMX : This function is used to evaluate an expression for each row. It's useful when you need to perform calculations on a row-by-row basis before aggrega…

Power BI
Mar 19, 2026 6 min read

What is Functions and Difference between Functions and Stored Procedures in SQL Server

What is a Function in sql : A function is a set of SQL Statements that perform a specific task. Basically, it is a set of SQL statements that accept only i…

database oracle programming
Mar 19, 2026 3 min read

Basic in NumPy

NumPy is a Python library. NumPy is used for working with arrays. NumPy is short for "Numerical Python". The array object in NumPy is called ndarray, it pr…

Mar 19, 2026 3 min read

Basics of Pandas

Pandas is the most popular open-source library in the Python programming language and pandas is widely used for data science/data analysis and machine lear…

Basic Pandas
Mar 19, 2026 2 min read

Database Backup in SQL Server

In SQL Server, taking a database backup is crucial for data recovery and protection. Here’s a basic guide on how to perform a database backup and restore i…

backup database sql-server
Mar 19, 2026 10 min read

Static Methods and Class Methods in Python

🧠 First, the Basics: In Python, there are 3 main types of methods inside a class: Instance Method → Works with object (instance) Class Method → Works with…

Class Methods Instance Method Static Methods
Mar 19, 2026 2 min read

What Is Dimensional Modeling in Data Warehouse?

Before going deep into Star Schema and Fact Tables, pehle ek basic sawal: Dimensional Modeling hota kya hai? Dimensional Modeling ek technique hai jo Data …

Dimensional Fact Star Schema
Mar 19, 2026 4 min read