Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. {
  2. "Results": {
  3. "output1": {
  4. "type": "table",
  5. "value": {
  6. "ColumnNames": ["Sentiment", "Score"],
  7. "ColumnTypes": ["String", "Double"],
  8. "Values": [
  9. ["neutral", "0.564501523971558"]
  10. ]
  11. }
  12. }
  13. }
  14. }
  15.  
  16. WITH subquery AS (
  17. SELECT text, sentiment(text) as result from input
  18. )
  19.  
  20. Select text, result.[Scored Labels]
  21. Into output
  22. From subquery
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement