Results for "comma saparate"

21 / 184 posts

How to Two series with comma separate(any Delimiter) value split into in rows respectively

If we have two series with comma separate(any Delimiter) value and we want split into in rows, I have create function for that: IF OBJECT_ID('TF_SplitTwoSe…

comma saparate database mysql
Mar 19, 2026 1 min read

Use of Apply(Cross and Outer) operator in SQL server

APPLY operator joins two table expressions. Also, I'll show how it differs from regular JOINs. Operator: CROSS APPLY Similar: INNER JOIN When to Use: Use a…

comma saparate database excel
Mar 19, 2026 3 min read

How to use Magic (virtual) table INSERTED and DELETED in SQL server

Magic Tables are virtual tables that are automatically created and maintained by SQL Server for each data modification operation performed on a table. They…

comma saparate database mysql
Mar 19, 2026 2 min read

What is View in SQL server

A view is a virtual table based on the result-set of an SQL statement. A view contains rows and columns, just like a real table. IF OBJECT_ID('ViewTable','…

cloud comma saparate database
Mar 19, 2026 1 min read

Normalization in Databases

Normalization in a database is the process of organizing the data to reduce redundancy and improve data integrity. The main goal of normalization is to bre…

comma saparate database mysql
Mar 19, 2026 2 min read

Triggers in SQL server

A trigger in SQL is a special type of stored procedure that runs automatically when certain actions happen in a table or view . A trigger cannot be explici…

comma saparate database mysql
Mar 19, 2026 7 min read

SQL Server Data type

SQL Server provides a variety of data types to store different kinds of data efficiently. Here are some commonly used SQL Server data types: CHAR(size): A …

comma saparate database Datatype
Mar 19, 2026 4 min read

Window Aggregate Functions in SQL

What is window function: Imagine you have a dataset with many rows, and you want to perform some calculations on each row based on a group of rows related …

comma saparate database mysql
Mar 19, 2026 5 min read

Implementing Transactions,Error Handling, and Dynamic SQL in SQL

Think of a transaction as a complete package deal. It's like when you buy something from a store. You give them money, and in return, you expect to get the…

comma saparate database Dynamic SQL
Mar 19, 2026 16 min read

WAITFOR in sql server

The WAITFOR statement in SQL Server is used to introduce a delay or wait period in the execution of a batch, transaction, or query. WAITFOR DELAY '00:00:05…

comma saparate database pivot
Mar 19, 2026 1 min read

What are Constraints in SQL?

SQL में constraints डेटाबेस टेबल में डेटा को सुरक्षित और सही बनाए रखने के लिए उपयोग किए जाते हैं। ये टेबल में डेटा की वैधता (validity) और अखंडता (integrity…

azure comma saparate Constraints
Mar 19, 2026 3 min read

ANY and ALL operators used in SQL

The ANY operator: returns a boolean value as a result returns TRUE if any of the sub-query values meet the condition Any means that the condition will be t…

comma saparate database mysql
Mar 19, 2026 1 min read

Order by index number in SQL

SELECT empid, lastname FROM HR.Employees ORDER BY 1 DESC --order by first column SELECT empid, lastname FROM HR.Employees ORDER BY 2 DESC --order by second…

comma saparate Indexing mysql
Mar 19, 2026 1 min read

How to get first date From month and Finyear

If we have Finyear and month then we create a date for examples: DECLARE @finyear CHAR(5) = '202425'; DECLARE @month smallint = 5; --Get Year DECLARE @year…

comma saparate database DAteformatparts
Mar 19, 2026 1 min read

XML Data – Complete Conceptual Guide (SQL Server Perspective)

How insert data on table from XML in SQL server, example: There are two method for insert data in table from XML. DECLARE @XMLInput VARCHAR(MAX); SET @XMLI…

azure comma saparate database
Mar 19, 2026 6 min read

Insert <br> tag in SQL text string

CREATE or ALTER FUNCTION dbo.Fn_InserBRtag(@inputString NVARCHAR(MAX)) RETURNS NVARCHAR(MAX) AS BEGIN DECLARE @resultString NVARCHAR(MAX) = ''; DECLARE @st…

br comma saparate mysql
Mar 19, 2026 1 min read

All Date Components in SQL

We get First Date , Last date ,month number, month Name,Year, Financial Year(Finyear), and Month Year from Date (Date Range of each single date). SET DATEF…

comma saparate database Date
Mar 19, 2026 4 min read

What is Power BI

Power BI is a suite of business analytics tools developed by Microsoft that allows you to visualize and share insights from your data. Power BI consists of…

business-intelligence comma saparate data-visualization
Mar 19, 2026 2 min read

What is RLS (Row-Level Security) in Power BI

RLS stands for Row-Level Security, which is a feature in Power BI (and also in SQL Server Analysis Services) that allows you to restrict data access at the…

azure comma saparate cybersecurity
Mar 19, 2026 2 min read

Databricks widgets

Input widgets allow you to add parameters to your notebooks and dashboards. You can add a widget from the Databricks UI or using the widget API.&nbsp; If y…

comma saparate database Dropdown
Mar 19, 2026 1 min read

Schema and Handling Corrupt data in PySpark

A schema in PySpark (and generally in data processing) defines the structure of a DataFrame, including the names and data types of each column. It serves a…

comma saparate data-engineering database
Mar 19, 2026 4 min read