splitSql | R Documentation |
splitSql
splits a string containing multiple SQL statements into a vector of SQL statements
splitSql(sql)
sql |
The SQL string to split into separate statements |
This function is needed because some DBMSs (like ORACLE) do not accepts multiple SQL statements being sent as one execution.
A vector of strings, one for each SQL statement
splitSql("SELECT * INTO a FROM b; USE x; DROP TABLE c;")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.