Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
MarkSYPO
Contributor II
Contributor II

Knowledge Uplift

Hello guys,

 

First i want to say hello 🙂 

 

I have already script in php which will generate me some data is any chance to convert it for Qlik Sense ? 

 $all_submitted_answers = UserQuiz::->count();
if ($all_submitted_answers > 0)
 {
       $all_correct_submitted_answers = UserQuiz::select('user_quiz.*')->join('answers', 'answers.id', '=', 'user_quiz.answer_id')->where('answers.is_correct', 1)->count();
        $total = ($all_correct_submitted_answers) ? round((($all_correct_submitted_answers / $all_submitted_answers) * 100), 1) : '0';
}

 

Many thanks Guys 🙂

Labels (2)
3 Replies
MarkSYPO
Contributor II
Contributor II
Author

Small update 

SELECT user_quiz.user_id, user_quiz.question_id,user_quiz.answer_id,user_quiz.video_id FROM user_quiz
JOIN answers a ON a.id = user_quiz.answer_id
WHERE a.is_correct =1;
MarkSYPO
Contributor II
Contributor II
Author

Okay done it thanks anyway 🙂 

Can be closed 🙂 

MayilVahanan
MVP
MVP

Hi Mark,

You can use this SQL Query in the Qliksense directly by connecting the DB via ODBC / OLEDB connector.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.