我正在尝试用pandas做一些相当于以下SQL命令的事情: select *left join tableB as B
on A.key = B.key and substr(A.value,1,2) not in ('something', 'something else') 正如您在上面的sql查询中看到的,A.value在连接过程中应用了一个过滤条件,但由于它是左
我已经得到了SQL Server中的几个表,并且正在尝试找出连接它们的最佳方法。我所做的是:2) pull all the column names from the INFORMATION_SCHEMA.COLUMNSevery combination of columns and see what the row count is of the inner join of the 2 columns