Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
explicit_cast
/
on_c_bigint_and_c_integer.sql
blob: 08e8add2f634d3d3e391543a3f1613c9699578ae [
file
] [
log
] [
blame
]
select
count
(*)
from
cast_tbl_1 a
,
cast_tbl_2 b
where
CAST
(
a
.
c_bigint
as
INTEGER
)
=
b
.
c_integer
;