Sign in
apache
/
drill-test-framework
/
refs/heads/main
/
.
/
framework
/
resources
/
Functional
/
union
/
VarcharSubstringAndDate.sql
blob: c0592368cc095e91dec7544e8527165e4a10df81 [
file
]
SELECT
SUBSTRING
(
'ABC some text'
,
1
,
3
)
AS
ExtractString
UNION
SELECT
date
'2017-04-06'
;