| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
These are the modifications of JSqlParser done before githubs relase tagging.
create view testView (col1,col2) as select a, b from tableupdate tab1 set c=5 from tab1 inner join tab2 on tab1.col1=tab2.col2create materialized view testView as select a, b from tablecreate index myindex on mytab (mycol, mycol2)select cast(col as varchar) from tableselect * from taba, tabb where taba.a=tabb.a(+)select a from taba union select b from tabb
select a from taba intersect select b from tabb
select a from taba except select b from tabb
select a from taba minus select b from tabbinsert taba (col1,col2) values (1,2), (2,5), (3,20)SELECT col FROM (VALUES 1,2) AS MY_TABLE(col)SELECT sum(a) over () FROM taba| Back | FazBrowse Home | New Git URL |