For the query that populates the table, simply add a blank column using null as
or '' as
in your SELECT statement.
MySQL Example:
SELECT `ID`, '' as `DropDown` from some_Schema.some_Table
Then, populate your blank drop down column using a select statement in the configureEditor extension function.
Here is an example: