Notes SQL Server
Notes SQL Server
- SSMS - IDE
- DDL : CREATE, ALTER, TRUNCATE, DROP
- DML : INSERT, SELECT, UPDATE, DELETE
- Auto-generate Values
- Batches
- Exception Handling
- Functions
Built-in
Math, String, Conversion, Date Time, Ranking
User defined
Scalar, Table (inline, multi-stmt)
- Procedures
- Misc.
temporary table, clauses , flags
-------------------------------------------------
SSMS Connection
Server Type : Database Engine
Server Name : VBIMYS-29
Authentication : Windows
[ITLINFOSYS]\username
Database Name : Classroom_Practice // not master
SQL Server:
User Defined
TraineeMgmt
- TraineeDetails
(EmpNo, Name, Batch, DateOfJoining, BatchOwner)
1 John
- EducatorDetails
(EmpNo, Name)
- BatchDetils - batchid
(BatchId, BatchName, SubBatchName, BatchStartDate, BatchEndDate)
- Exams
(ExamId, TraineeID, FocusArea, MarksHandsOn, MarksObjective)
- Courses
Trainee TotalMarks
2. For each FA, avg marks of Hands-on, avg of
FA1 50 35
FA2 25 15
.....
System Defined
master : starting
model
resource
msdb
temp
Datatypes
EmpNo : INT
BIT, TINYINT, SMALLINT, INT, DECIMAL
MONEY, SMALLMONEY
FLOAT
Name : VARCHAR(size)
CHAR(size), VARCHAR(size)
Batch : CHAR(20)
DOJ : Date
Date, time, datetime
TimeOfEnteringSession : time
BATCHES
Syntax:
BEGIN
DECLARE @num INT
SET @num =10
SELECT @num
END
Program Construct
IF <cond>
BEGIN
<stmts>
END
Exception Handling
BEGIN TRY
DECLARE @num INT
SET @num =10
SELECT @num
END TRY
BEGIN CATCH
SELECT 'Error'
END CATCH
-------------------------------------------------------
ITLINFOSYS\username
domain
@@ERROR -->
THROW --> raise an exception, causing the control to move to CATCH block
-----------------------------------------------------------
BEGIN TRY
DECLARE @CardNumber NUMERIC(16)=1209611246778470
DECLARE @CardType CHAR='V'
DECLARE @Amount MONEY=3600, @BalAmt MONEY
IF @CardType = 'V'
BEGIN
SET @Amount = @Amount + 250
END
ELSE IF @CardType = 'M'
SET @Amount *= 1.1
SELECT @BalAmt=Balance FROM CardDetails WHERE CardNumber=@CardNumber
IF @BalAmt >= @Amount
SELECT 'Yes'
ELSE
SELECT 'No'
END TRY
BEGIN CATCH
SELECT ERROR_MESSAGE(), ERROR_LINE(), ERROR_NUMBER()
END CATCH
2. For a given Productid, display the maximum priced product of the given pdt's
category.
'P126' from category id 4 --> display, name, category name, price of the most
priced from category 4
BEGIN
DECLARE @CatId INT, @Price MONEY, @PID CHAR(4)='P126', @PdtName VARCHAR(50)
SELECT @CatId =CategoryId FROM Products WHERE ProductId=@PID
SELECT @Price=MAX(Price) FROM Products WHERE CategoryId = @CatId --- Price =
9056
SELECT @PdtName = ProductName FROM Products WHERE Price = @Price and
CategoryId = @CatId
SELECT @PdtName
END
---------------------------------------------------------------
Function Name:
checkAmount
Parameters:
@CardNumber NUMERIC(16), @CardType CHAR, @Amount MONEY
Logic:
any logic concerned with data storage
Returns a single
Execution:
SELECT [schema].<function name>(parameter1,parameter2)
--Execution
SELECT [schema].AvailDiscount('P110')
Products Categories
CardDetails PurchaseDetails
USers Roles
2. Given a ProductID, display count of customers who have purchased that product
3. Given a ProductID, display details of customers who have purchased that product
Name, Quatity, Price, Email....
-- Inline Function
1. a Find out how many people have made purchase worth Rs.5000 or more
b Display the details - Address, EmailID- of the people have made purchase
worth Rs.5000 or more
2. Check if there are any customers who are registered, but have not made any
purchase so far. Display their details.
Output:
EmailID BuyerType OfferMessage
VARCHAr(100) VARCHAr(50) VARCHAr(100)
-------------------------------------------------------------------
Functions
1. Scalar 2. Table
valued func
valued func
returns single
value
2a) inline
2b) mulit-stmt
single query
multiple stmts
/stmt
--------------------------------------------------
Ranking Functions
- ROW_NUMBER : serial number after ordering in given arrangement
Field - PRice
100 1
100 2
90 3
- RANK : same rank to the same values in the column
Field - PRice
100 1
100 1
90 3
- DENSE_RANK : No skipping of ranks- continuous
Field - PRice
100 1
100 1
90 2
- NTILE(n) : n groups formed based on the column ordering
Procedure
- Change values - UPDATE, INSERT, DELETE...
- Error Handling
- Batch - Declare, Set, WHILE, IF ... SELECT, INSERT...
Creation:
ALTER PROCEDURE usp_AddStock(@varname INT OUTPUT,@ProdId CHAR(4),@Qty INT)
AS
BEGIN
-----
END
Execution:
DECLARE @returnvalue INT
EXEC @returnvalue= usp_AddStock 'P103',19999999 -- Execution
SELECT @returnvalue
Return
1- Invalid Product
2- Invalid Qty
3- Successful
Temporary Tables
- scope of a session
------------------------------------------------------------
Program Constructs:
1. WHILE
WHILE is the only iterative construct supported in SQL Server.
BEGIN
DECLARE @Price NUMERIC(8) =200, @QuantityPurchased TINYINT=2, @TotalAmount
NUMERIC(8)=0, @Counter INT =0
WHILE @Counter < @QuantityPurchased
BEGIN
SET @TotalAmount=@TotalAmount + @price
SET @Counter = @Counter + 1
END
PRINT @TotalAmount
END
2. CASE
SELECT OrderID, Quantity,
CASE
WHEN Quantity > 30 THEN 'The quantity is greater than 30'
WHEN Quantity = 30 THEN 'The quantity is 30'
ELSE 'The quantity is under 30'
END AS QuantityText
FROM OrderDetails;