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�…
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 …
Python Basic
py --version python --version # \n : Newline # \t : Tab # \\ : Backslash # \" : Double quote # \' : Single quot print("Hello, World!\nThis is a new line.")…
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…
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…
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…
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…
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…
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…
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 …