-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04_02.sql
87 lines (69 loc) · 2.29 KB
/
04_02.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
-- CAST([column name] AS [data type])
-- CONVERT([data type], [column name], [style number (optional)])
select
f.flavor_name,
pt.product_type,
p.price,
cast_price = cast(p.price as int),
convert_price = convert(decimal(6, 3), p.price)
from dbo.product p
inner join dbo.oil_flavor f
on p.flavor_id = f.flavor_id
inner join dbo.product_type pt
on p.product_type_id = pt.product_type_id
-- CONCAT([string], [string], [string]...) or [string] + [string]
declare @price_prefix varchar(20) = '$'
select
f.flavor_name,
pt.product_type,
p.price,
dollar_sign = @price_prefix + cast(p.price as varchar(10)),
concat_price = concat(@price_prefix, p.price)
from dbo.product p
inner join dbo.oil_flavor f
on p.flavor_id = f.flavor_id
inner join dbo.product_type pt
on p.product_type_id = pt.product_type_id
-- FORMAT([column name], '[custom format]') or FORMAT([column name], [format code], [culture code])
select
f.flavor_name,
pt.product_type,
p.price,
format_price = FORMAT(p.price, 'C', 'en-US')
from dbo.product p
inner join dbo.oil_flavor f
on p.flavor_id = f.flavor_id
inner join dbo.product_type pt
on p.product_type_id = pt.product_type_id
select
c.full_namne,
o.order_date,
format_order_date = format(o.order_date, 'MMM dd, yyyy')
from dbo.product_order o
inner join dbo.customer c
on o.customer_id = c.customer_id
-- GETDATE() or SYSDATETIME()
SELECT GETDATE(), SYSDATETIME()
-- DATEADD([interval], [number], [date value])
select dateadd(month, 1, sysdatetime())
-- If you want to look at a month ago, you use a negative number.
select
c.full_name,
o.order_date
from dbo.product_order o
inner join dbo.customer c
on o.customer_id = c.customer_id
where o.order_date > dateadd(month, -1, sysdatetime())
-- COALESCE([first choice], [second choice], [third choice], ...)
-- ISNULL([first_choice], [second choice])
declare @override int
select
srvc_name,
min_participants,
isnull_participants = ISNUL(min_participants, 0),
coalesce_participants = coalesce(min_participants, @override, 0),
coalesce_participants = coalesce(min_participants, @override, 'n/a')
from dbo.additional_service
-- Note: Make sure that all the choices have the same data type
-- coalesce_participants = coalesce(min_participants, @override, 'n/a')
-- will throw error