mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
Merge pull request #1278 from codysoyland/webui-help-menu-fixes
Update help menu in WebUI. Fixes #1277.
This commit is contained in:
commit
bfb692e37e
1 changed files with 16 additions and 11 deletions
|
|
@ -40,17 +40,22 @@
|
|||
<div class='query-tooltip-content'>
|
||||
<h5>PQL</h5>
|
||||
<div class="code">
|
||||
SetBit(frame=foo, rowID=0, columnID=0)<br />
|
||||
ClearBit(frame=foo, rowID=0, columnID=0)<br />
|
||||
SetRowAttrs(frame=foo, rowID=0, color="blue")<br />
|
||||
SetColumnAttrs(frame=foo, columnID=0, shape="circle")<br />
|
||||
Bitmap(frame=foo, rowID=0)<br />
|
||||
Range(frame=foo, rowID=0, start="2010-01", end="2017-03")<br />
|
||||
Count(<BITMAP_CALL>)<br />
|
||||
TopN([BITMAP_CALL], frame=foo, n=20)<br />
|
||||
Union([BITMAP_CALL, ...])<br />
|
||||
Intersect(<BITMAP_CALL>, [BITMAP_CALL, ...])<br />
|
||||
Difference(<BITMAP_CALL>, <BITMAP_CALL>)
|
||||
SetBit(frame=foo, row=0, col=0)<br />
|
||||
ClearBit(frame=foo, row=0, col=0)<br />
|
||||
SetRowAttrs(frame=foo, row=0, color="blue")<br />
|
||||
SetColumnAttrs(frame=foo, col=0, shape="circle")<br />
|
||||
SetFieldValue(frame=foo, col=0, age=30)<br />
|
||||
Bitmap(frame=foo, row=0)<br />
|
||||
Range(frame=foo, row=0, start="2010-01", end="2017-03")<br />
|
||||
Count(<BITMAP_CALL>)<br />
|
||||
TopN([BITMAP_CALL], frame=foo, n=20)<br />
|
||||
Union([BITMAP_CALL, ...])<br />
|
||||
Intersect(<BITMAP_CALL>, [BITMAP_CALL, ...])<br />
|
||||
Difference(<BITMAP_CALL>, <BITMAP_CALL>)<br />
|
||||
Xor([BITMAP_CALL, ...])<br />
|
||||
Min([BITMAP_CALL], frame=foo, field=age)<br />
|
||||
Max([BITMAP_CALL], frame=foo, field=age)<br />
|
||||
Sum([BITMAP_CALL], frame=foo, field=age)
|
||||
</div>
|
||||
<br />
|
||||
<h5>Special commands</h5>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue