Jump to content

[SOLVED] select values from table those are not present in the another table


deepson2

Recommended Posts

Hello,

 

I want to calculate how many quizes user has not played. basically i have two table. In one table i am storing all question and answer with quizid and the table name is truefalse. In the another table i am storing the quiz information of user has played and table name is quizuser.

 

so i was trying the following query. but this is using left joint. i want to consider userid as well.

 

 

SELECT * FROM `truefalse`LEFT JOIN quizuserON truefalse.quizid= quizuser.quizidWHERE quizuser.quizid IS NULL

 

 

Ex- if A is user who has userid=1 And he has played 5 quizes out of 10. so i want to show remaing five quizzes to him. How can i do that.

 

thanks in advance.

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.