Wolfram Language Paclet Repository

Community-contributed installable additions to the Wolfram Language

Primary Navigation

    • Cloud & Deployment
    • Core Language & Structure
    • Data Manipulation & Analysis
    • Engineering Data & Computation
    • External Interfaces & Connections
    • Financial Data & Computation
    • Geographic Data & Computation
    • Geometry
    • Graphs & Networks
    • Higher Mathematical Computation
    • Images
    • Knowledge Representation & Natural Language
    • Machine Learning
    • Notebook Documents & Presentation
    • Scientific and Medical Data & Computation
    • Social, Cultural & Linguistic Data
    • Strings & Text
    • Symbolic & Numeric Computation
    • System Operation & Setup
    • Time-Related Computation
    • User Interface Construction
    • Visualization & Graphics
    • Random Paclet
    • Alphabetical List
  • Using Paclets
    • Get Started
    • Download Definition Notebook
  • Learn More about Wolfram Language

SQLOperators

Guides

  • SQL Operators
The page title
SQL Operators
 

Demo

Install paclet

In[13]:=
PacletInstall["DamianCalin/SQLOperators"];​​Needs["DamianCalin`SQLOperators`"]

Get demo data using FinancialData package

SQL operators

projectSQL (distinctSQL)

selectSQL

In[22]:=
(*Selectasubsetofcolumns*)​​selectSQL[sampledataSQL,{symbol,close}]//​​showTableSQL
In[23]:=
close=6;(*globalsymbolshavingthesamenameascolumnsarenotimpacted*)​​time="r"​​selectSQL[sampledataSQL,{close,time}]//(*here"close"isevaluatedintablecontext*)​​showTableSQL
In[26]:=
selectSQL[sampledataSQL,{3,1}]//(*youcanselectonordinalpositionsofcolumns*)​​showTableSQL
In[27]:=
selectSQL[sampledataSQL,{All}]//(*Allselectsallcolumns*)​​showTableSQL​​
In[27]:=
selectSQL[sampledataSQL,{"close","time"}]//(*youcanusecolumnnamestrings*)​​showTableSQL

whereSQL, ordeBySQL

addColumnsSQL, rowMapSQL, rowTransformSQL

bindColumnsSQL , colMapSQL

groupBySQL , summarySQL , summaryMapSQL

combining operators

unnestSQL

pivotSQL , unpivotSQL

overSQL

rank , denserank , ntile , lag

unionSQL

joinSQL, crossJoinSQL , leftjoinSQL

Summaries , cross -tabulation functionality similar to R

Split SQL table on given conditions

Define constraints on SQL table

LeftJoin ,FullJoin , AntiJoin , SemiJoin

Recursive queries connectBySQL

""

© 2025 Wolfram. All rights reserved.

  • Legal & Privacy Policy
  • Contact Us
  • WolframAlpha.com
  • WolframCloud.com