creating a temp table

Posts   
 
    
e106199
User
Posts: 175
Joined: 09-Sep-2006
# Posted on: 03-Feb-2011 17:19:46   

Hi, is it possible to create a temp table using llblgen? I have attendance table that keeps only the absent students. If a student is present he is not in there.

I need to create a report that lists all school days and the number of absents for each day. The easiest way i could think of is creating a temp table that holds the dates school was in session and left join it with the attendance table.

Would it be possible to accomplish this? thank you

-shane

MTrinder
User
Posts: 1461
Joined: 08-Oct-2008
# Posted on: 03-Feb-2011 21:14:39   

It's not possible to create a temp table in the database using LLBLGen, however you can use Derived Table Definitions to accomplish the same results.

You could also create a view in the database which list the required data, and create a TypedView looking at that.

Matt