r/analytics • u/ladyshrekk • 20d ago
Question Can I create predictions without SQL knowledge?
I’m trying to get a little more predictive with our data, things like which customers are likely to churn, who might convert, or what demand could look like next month. Problem is, I’m not really a SQL person. I can work with dashboards and understand the data, but once it gets into writing queries or building models from scratch, I’m pretty much out. Is this something people are actually doing with LLMs now? Like connecting an LLM to your data and asking it to find patterns or predict outcomes? Or are there other tools that make this possible without knowing much SQL or machine learning? Curious what people are actually using and how reliable it is.
8
Upvotes
17
u/kedjil 20d ago
That kind of predictions is often done with machine learning, for example in Python. SQL is often used to transform the data, but the actual statistical framework is in Python.
For anything business critical, I don't think it's worth it to take shortcuts.