當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R dbplyr ident 將字符向量標記為 SQL 標識符


ident() 采用不帶引號的字符串並將它們標記為標識符。 ident_q() 假設其輸入已被引用,並確保它不會再次被引用。目前僅用於schema.table

用法

ident(...)

is.ident(x)

參數

...

字符向量或name-value對

x

一個東西

例子

# SQL92 quotes strings with '
escape_ansi("x")
#> <SQL> 'x'

# And identifiers with "
ident("x")
#> <IDENT> x
escape_ansi(ident("x"))
#> <SQL> `x`

# You can supply multiple inputs
ident(a = "x", b = "y")
#> <IDENT> x
#> <IDENT> y
ident_q(a = "x", b = "y")
#> <IDENT> x
#> <IDENT> y
源代碼:R/ident.R

相關用法


注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Flag a character vector as SQL identifiers。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。