I have a very large CSV file that I imported into a sqlite table. There are over 50 columns and I’d like to find all rows where any of the columns are null. Is this even possible? I’m just trying to save myself the time of writing out all of the 50 different columns in a where clause. Thanks.
Share
It’s an interesting question but it’s a probably quicker to write a quick script that generates your converts that copy/pasted header row from your CSV to the appropriate script.
For instance this works in LINQPad (C#)