Hi people!
I'm having a peoblem with syntax in RShiny.
If i have some input called that way:
insertUI(
selector = "#pesquisa",
where = "afterEnd",
ui = selectInput(
"grau",
label = "Grau:",
choices = df$GRAU
)
)
How can i handle a the data using SQLDF?
I'm trying this:
test <- sqldf('select something
from my_df
where something = (input$grau)
')
There is an error in my code, but i could not find it.
I have to put my selected choise in the "grau" input in the WHERE condition.
Thx!
library("sqldf")
database: Oracle