Last active
August 29, 2015 14:14
-
-
Save st98/aece2e1a513ce1e7eaea to your computer and use it in GitHub Desktop.
with 節。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table t(n int, s text, t text); | |
insert into t values (1, 'abc', 'hoge'); | |
insert into t values (2, 'def', 'fuga'); | |
with s(a, b, c) as (select * from t) select * from s; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment