Skip to content

Tag: pandasql

How to do query with multiple condition from 2 table?

I wanna pick cities from worldcity by these conditions: the population of the city exceeds the population of the most populous city in the Filipina. (Meaning: for example city X is the city in the Filipina with the most population. We want to list the cities with a population greater than city X), AND there i…

Variables in SQLITE Python

I am working in Jupyter Notebooks using pandasql, which uses SQLight syntax. I am trying to select entries from a certain month, depending on a variable. I am planning to create a Python function that will change the value of the variable being used, but right now I am trying to get “Parameterized Queri…