Query not showing data from table

draxz1289

New member
Local time
Today, 06:35
Joined
Dec 12, 2013
Messages
1
Hello,

I am a complete beginner in Access and I am stuck at a problem.

I am trying to run a query and for some reason its not showing the data from the table (its blank), this is a monthly reporting I do - last months query works perfectly.

Table: log and list

Here is the SQL

SELECT log.*, UL.langue, UL.version
FROM log, (SELECT list.id, list.[langue], list.version, list.no_joueur FROM list GROUP BY list.id, list.[langue], list.version, list.no_joueur) AS UL
WHERE (((log.id)=[UL].[id]) AND ((UL.no_joueur)<90000000));

Table has all the columns.

any help is appreciated.
 
If you remove the WHERE does it return records?

Code:
SELECT log.*, UL.langue, UL.version
FROM log, (SELECT list.id, list.[langue], list.version, list.no_joueur FROM list GROUP BY list.id, list.[langue], list.version, list.no_joueur)  AS UL


Does the inner SELECT return anything?

Code:
SELECT list.id, list.[langue], list.version, list.no_joueur FROM list GROUP BY list.id, list.[langue], list.version, list.no_joueur
 

Users who are viewing this thread

Back
Top Bottom