powered by
This function creates "Select" part fo the query
select(query = NULL, ..., top = NULL, distinct = NULL)
Existing query
Fields to query
Top n rows of the data
True or FALSE
#Returns Top 100 rows from_tb <- select("","COl1","COl2","Col3", top=100) #Returns distinct rows from_tb <- select("","COl1","COl2","Col3", distinct=TRUE)
Run the code above in your browser using DataLab