Skip to content

Commit

Permalink
Update documentation for SELECT WITHOUT FROM
Browse files Browse the repository at this point in the history
  • Loading branch information
xzdandy committed Sep 11, 2023
1 parent 30400f2 commit 3f21581
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/source/reference/ai/model-forecasting.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. _forecast:

Time Series Forecasting
========================

Expand Down
15 changes: 15 additions & 0 deletions docs/source/reference/evaql/select.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,18 @@ Compose multiple user-defined functions in a single query to construct semantica
FROM HAPPY JOIN LATERAL UNNEST(FaceDetector(data)) AS Face(bbox, conf)
WHERE id < 15;
SELECT WITHOUT TABLE
--------------------

In EvaDB, we can compose a query that does not have a table source. This type of queries are usually expressions.

.. code:: sql
SELECT 1;
SELECT 1>2;
SELECT HomeRentalForecast(12);
.. note::

Go over :ref:`forecast` for forecasting function support in EvaDB.

0 comments on commit 3f21581

Please sign in to comment.