| 1234567891011121314151617181920212223242526272829 | [[esql-from]]=== `FROM`The `FROM` source command returns a table with up to 10,000 documents from adata stream, index, or alias. Each row in the resulting table represents adocument. Each column corresponds to a field, and can be accessed by the nameof that field.[source,esql]----FROM employees----You can use <<api-date-math-index-names,date math>> to refer to indices, aliasesand data streams. This can be useful for time series data, for example to accesstoday's index:[source,esql]----FROM <logs-{now/d}>----Use comma-separated lists or wildcards to query multiple data streams, indices,or aliases:[source,esql]----FROM employees-00001,employees-*----
 |