> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Tableless Query

<a id="sql-tableless-query" />

A query without a `FROM` clause can be used to return a single row of data
containing a constant or expression.

For example, to select the current day of the week:

```sql Tableless Query Example theme={null}
SELECT DAYNAME(NOW()) AS "Today"
```

<Info>
  A *tableless query* will create a result set backed by a
  [replicated](/content/concepts/tables#replicated) table, by default.
</Info>
