Answers for "drop if col is null sql"

2

drop rows where specific column has null values

df = df[df['EPS'].notna()]
Posted by: Guest on April-04-2021
0

how to drop column where target column is null

df = df.dropna(axis=0, subset=['Charge_Per_Line'])
Posted by: Guest on November-11-2021

Python Answers by Framework

Browse Popular Code Answers by Language