I have a python script which I would like to call from within a SQL SELECT statement in MySQL.
SELECT myPythonFunc([column_name])
FROM someTable
I am able to do this in oracle DB with jar files (loadjava). Is there a way to do this with Python scripts in MySQL?
Thanks
CREATE FUNCTIONbut you can not run python method on SQL statement as far as I know but you can tryPostgreSQL.. Also take a look stackoverflow.com/questions/13729594/…