Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
View Definition Has Changed
Message
From
23/03/1999 14:11:09
 
 
To
23/03/1999 14:07:43
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00200883
Message ID:
00201097
Views:
14
Just for fun...what happens if you remove the IIF() and just return the field? Can enroll.dropped be .NULL.?
SELECT Schedule.term, Schedule.discipline, Schedule.level,;
>  Schedule.section, Student.name, IIF(Enroll.drop,"Dropped",""),;
>  Schedule.pkey, Enroll.pkey, Student.pkey, Student.block,;
>  Student.preregterm;
> FROM  ieli!schedule INNER JOIN ieli!enroll;
>    INNER JOIN ieli!student ;
>   ON  Enroll.stufkey = Student.pkey ;
>   ON  Schedule.pkey = Enroll.schedfkey;
> WHERE Schedule.term = ?vTerm;
>   AND Schedule.level = ?vLevel;
>   AND Schedule.section = ?vSection;
>   AND Schedule.discipline = ?vDiscipline;
> ORDER BY Student.name
>
Previous
Reply
Map
View

Click here to load this message in the networking platform