cursor.execute("""select c.CanonicalSmile, r.IDTestCytotox, r.IDTestCytotox from cmpdCytotoxResult as r inner join compound as c on r.IDCompound = c.IDCompound;""")
rows=cursor.fetchall()
CompoundCytotoxicityResult.objects.all().delete()
self.stdout.write(
self.style.SUCCESS('Successfully flushed compound cytotoxicity result table'))