This folder contains 2 articles
SQL 950 Session
PWA examples --list account ids that have more that 3 students associated with it
select aid, count(*)
from pws
where del = 0
group by aid
having ...
Tue, Apr 18, 2017 at 4:49 PM
Some examples on how to generate the SQ field when inserting records. -- examples on how to generate the sequesnce field (SQ)
-- wrong way #1
select pi...
Thu, Feb 9, 2017 at 8:45 AM