Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
4 views1 page

T-SQL Variable Decision Flowchart

Uploaded by

dubeypoorav29
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

T-SQL Variable Decision Flowchart

Uploaded by

dubeypoorav29
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

T-SQL Variable Decision Flowchart

Start


Read the Question


Does the question require **input from user or predefined value**?
├─ Yes → Declare a variable for the input → Use SET to assign value

└─ No → Skip input variable


Does the question require **fetching data from table**?
├─ Yes → For each piece of data to fetch (column) → Declare separate variable
│ Use SELECT to assign values from table into variables

└─ No → Skip table variables


Does the question require **printing/displaying output**?
├─ Yes → Use the variables declared for outputs → PRINT them

└─ No → Skip PRINT


End

You might also like