为什么我不能在PLSQL匿名块之后直接编写DDL?

时间:2016-09-20 07:38:16

标签: oracle plsql ddl sql-scripts

我有以下简单的脚本。

EXECUTE IMMEDIATE

执行它以以下错误结束

  

ORA-06550:第6行,第1栏:

     

PLS-00103:遇到符号“CREATE”

     
      
  1. 00000 - “行%s,列%s:\ n%s”
  2.         

    *原因:通常是PL / SQL编译错误。

         

    *动作:

匿名阻止后我不能直接使用DDL吗?我是否被迫在匿名区内使用function getSelectedText() { var text = ''; if (window.getSelection) { text = window.getSelection().toString(); } else if (document.selection && document.selection.type != "Control") { text = document.selection.createRange().text; } return text; }进行此操作?

1 个答案:

答案 0 :(得分:9)

您只是错过了' /':

n <- count(iris, Species) %>% mutate(new = paste(Species, '-', n))
levels(iris$Species) <- n$new

plotly::plot_ly(data = iris, x = Sepal.Length, y = Petal.Length, mode = "markers",
        color = Species)

Here你会发现更多内容。