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