get_all_select_cols_with_alias {RSqlParser} | R Documentation |
Get the names of the selected columns in the sql statement
Description
This function takes sql statement and returns all the columns selected in the sql statement.
Usage
get_all_select_cols_with_alias(sql)
Arguments
sql |
statement |
Value
names of columns selected in sql statement
Examples
get_all_select_cols_with_alias("Select p from abc where xyz = 5")
[Package RSqlParser version 1.5 Index]