select: Generates Select part fo the query

Description Usage Arguments Examples

Description

This function creates "Select" part fo the query

Usage

1
select(query = NULL, ..., top = NULL, distinct = NULL)

Arguments

query

Existing query

...

Fields to query

top

Top n rows of the data

distinct

True or FALSE

Examples

1
2
3
4
5
#Returns Top 100 rows
from_tb <- select("","COl1","COl2","Col3", top=100)

#Returns distinct rows
from_tb <- select("","COl1","COl2","Col3", distinct=TRUE)

abhisheksinha08/mssqlR documentation built on May 20, 2019, 4:08 p.m.