Sign in
apache
/
drill-test-framework
/
refs/heads/main
/
.
/
framework
/
resources
/
Functional
/
union
/
ThreeCastsToDecimals.sql
blob: d9f83c1012f0493711f0fb964ee8c97bc34cacda [
file
]
SELECT
cast
(
100
as
decimal
(
10
,
3
))
UNION
SELECT
cast
(
100
as
decimal
(
10
,
2
))
UNION
SELECT
cast
(
100
as
decimal
(
10
,
1
));