Skip to content

Tag: sql

Optimizing subquery in sql [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago. Improve this question Given the following SQL query Recently this query has been taking longer t…

PL/SQL: Function returned without value

I wrote below FUNCTION to check given data is exist. It is working before but when i add new data on table named iqa_department it suddenly after triggering the function returns me with that error, im kinda new in oracle fom mysql to oracle Here’s how i call it. error i’m getting Answer try this:

Compare two data frames and find number of nulls

I have a problem. I heve data frame 1 named “df”: enter image description here And I have the data frame 2 named “dfP1”: enter image description here I want to compare the unique rows that exist in colum “Campo a Validar” from “dfP1” vs the columns in “df&…

Get executed sql statement in pymysql

I am executing a query that is invalid, but I’d like to be able to see exactly what the query is being executed by pymysql to debug it. Is there a way to do something like: Answer As per the documentation, you should be able to do: This read-only property returns the last executed statement as a string.…