You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
query = ("SELECT id_entity, id_customer, grade FROM ps_revws_review LEFT JOIN ps_revws_review_grade ON ps_revws_review.id_review = ps_revws_review_grade.id_review")
cursor.execute(query)
f = open("/home/student/biznes/recommender-system/target/table.csv", "w")
for (id_entity, id_customer, grade) in cursor:
print("Product: {} was rated by: {} with score {}".format(id_entity, id_customer, grade))