There should only be one column in the subquery returned from the statement result SELECT. eg,
SELECT *
FROM newRowP a
WHERE a.rowId IN (SELECT colName FROM newCellP b .....)
but the best way to use INis JOINfor tables.
SELECT DISTINCT a.*
FROM newRowP a
INNER JOIN newCellP b
ON a.rowID = b.colName
INNER JOIN newProviderP c
ON b.cellID = c. colName
WHERE c.pid IN ('3000344','245')
where colnameare the columns that you want to associate with another table.