Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Table Joins in ExecuteSQL


This topic is 3254 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hi, I can't get the script below to return anything other than ? once I've joined the tables. Can anyone see why?

TIA

ExecuteSQL ( "
            SELECT b.ClearLearningRating, count(*)
            FROM LessonObservations a
            INNER JOIN Observations b on a.[pk] = b.[fk_TeacherEvaluations]
            WHERE a.obsdate >=?
            AND a.obsdate <= ?
            AND a.YearGroup = ?
            GROUP BY b.ClearLearningRating "

; "|"; "¶" ;

$Repstartdate;
$Rependdate;
$RepYearGrp )

Link to comment
Share on other sites

This topic is 3254 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.