Skip to contents

Get all columns of a WRDS table.

Usage

wrds_table_columns(conn, schema, table)

Arguments

conn

Database connection to WRDS created with wrds_connect.

schema

Name of WRDS schema, e.g., "crsp".

table

Table name within the given schema.

Value

A tibble with the following columns:

  • table_schema: schema.

  • table_name: table.

  • column_name: Column name.

  • column_default: Default value.

  • is_nullable: "YES" or "NO".

  • data_type: Data Type.