evadb.EvaDBCursor.show#

EvaDBCursor.show(object_type: str, **kwargs) EvaDBQuery[source]#

Shows all entries of the current object_type.

Parameters:
  • show_type (str) – The type of SHOW query to be executed

  • **kwargs – Additional keyword arguments for configuring the SHOW operation.

Returns:

The EvaDBQuery object.

Return type:

EvaDBQuery

Examples

>>> cursor.show("tables").df()
    name
0   SampleTable1
1   SampleTable2
2   SampleTable3