Note that there are some explanatory texts on larger screens.

plurals
  1. POwhile loop in python sql query
    primarykey
    data
    text
    <p>Hi i have try this query in php which is running fine and i have to do this same in python </p> <pre><code> $select=mysql_query("SELECT DISTINCT A.entity_id AS entity_id ,A.email AS email,A.catquizid AS style_quiz_score ,A.catquizquesans AS style_quiz_answer,A.created_at AS date_joined,A.is_active AS is_active ,B.attribute_id AS attribute_id,B.value AS info FROM `customer_entity` AS A inner join `customer_entity_varchar` AS B on A.entity_id=B.entity_id WHERE B.`attribute_id` IN (1,2) limit 10",$conn); $arr=array(); while($result= mysql_fetch_assoc($select)) { if(!isset($arr[$result['entity_id']]['lastname'])){ $arr[$result['entity_id']]['firstname'] = $result['info']; } $arr[$result['entity_id']]['lastname'] = $result['info']; $arr[$result['entity_id']]["email"]=$result['email']; $arr[$result['entity_id']]["style_quiz_score"]=$result['style_quiz_score']; $arr[$result['entity_id']]["style_quiz_answer"]=$result['style_quiz_answer']; $arr[$result['entity_id']]["date_joined"]=$result['date_joined']; $arr[$result['entity_id']]["is_active"]=$result['is_active']; $arr[$result['entity_id']]["username"]=normalize_str($result['email']); } </code></pre> <p>and in python i have tried this </p> <pre><code>def customer_migrate(request): cursor = connections['migration'].cursor() cursor.execute("SELECT DISTINCT A.entity_id AS entity_id ,A.email AS email,A.catquizid AS style_quiz_score ,A.catquizquesans AS style_quiz_answer,A.created_at AS date_joined,A.is_active AS is_active ,B.attribute_id AS attribute_id,B.value AS info FROM customer_entity AS A inner join customer_entity_varchar AS B on A.entity_id=B.entity_id WHERE B.attribute_id limit 4 ") row = cursor.fetchall() </code></pre> <p>how can i use the while loop in the python query , </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload