Sql server® 2012 t-sql fundamentals


Chapter 2  Single-Table Queries



Download 10,93 Mb.
Pdf ko'rish
bet3/443
Sana26.01.2022
Hajmi10,93 Mb.
#411755
1   2   3   4   5   6   7   8   9   ...   443
Bog'liq
BookSQL

Chapter 2  Single-Table Queries 

27

Elements of the SELECT Statement  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .27

The FROM Clause . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .29

The WHERE Clause . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .31

The GROUP BY Clause . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .32

www.it-ebooks.info




viii

 Contents

The HAVING Clause  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .36

The SELECT Clause  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .36

The ORDER BY Clause  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .42

The TOP and OFFSET-FETCH Filters  . . . . . . . . . . . . . . . . . . . . . . . . . . .44

A Quick Look at Window Functions  . . . . . . . . . . . . . . . . . . . . . . . . . . .48

Predicates and Operators  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .50

CASE Expressions   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .53

NULL Marks  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .55

All-at-Once Operations  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .59

Working with Character Data  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .61

Data Types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .61

Collation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .62

Operators and Functions   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .64

The LIKE Predicate  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .71

Working with Date and Time Data   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .73

Date and Time Data Types  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .73

Literals  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .74

Working with Date and Time Separately  . . . . . . . . . . . . . . . . . . . . . . .78

Filtering Date Ranges   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .79

Date and Time Functions  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .80

Querying Metadata  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .88

Catalog Views  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .88

Information Schema Views . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .89

System Stored Procedures and Functions  . . . . . . . . . . . . . . . . . . . . . .89

Conclusion  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .91

Exercises  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .91

1   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .91

2   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .92

3   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .92

4   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .92

5   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .93

6   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .93

7   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .94

8   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .94

www.it-ebooks.info





Download 10,93 Mb.

Do'stlaringiz bilan baham:
1   2   3   4   5   6   7   8   9   ...   443




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish