Results for "t-sql"

6 / 19 posts

Search: t-sql

Filter by Category

SQL

SQL Server User-Defined Functions (UDF)

SQL Server ke saare User-Defined Functions — Scalar, Inline TVF, MSTVF — ko ek jagah samjho. Real examples, performance tips, aur interview questions ke saath.

SQL Server UDF User Defined Function SQL Scalar Function SQL Server
Match in tagsMatch in content
Apr 29, 2026 18 min read
SQL

Added columns in a table by dynamic ways

IF OBJECT_ID('AddedDynamicColumn','P') IS NOT NULL BEGIN DROP PROC AddedDynamicColumn END GO CREATE PROCEDURE AddedDynamicColumn AS BEGIN SELECT ED.empid,ED....

database mysql pivot
Match in tags
Apr 3, 2026 5 min read
SQL

SQL Server Index Optimization Automation (Missing & Unused Index Management)

Pehle Basics — Index Hota Kya Hai? Simple bhaasha mein — index ek kitaab ka index page hota hai. Jaise tum dictionary mein "Zebra" dhundne ke liye seedha Z s...

SQL Server Index Optimization Database Performance
Match in tags
Mar 24, 2026 17 min read
SQL

Split full name into first name and last name in SQL

Split full name into first name and last name : SELECT EmployeeName, CASE WHEN CHARINDEX(' ', EmployeeName) > 0 -- Check if there is a space (indicating…

microsoft programming sql-server
Match in tags
Mar 19, 2026 1 min read
SQL

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
Match in tags
Mar 19, 2026 1 min read
SQL

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
Match in tags
Mar 19, 2026 1 min read