Advertisement
bucky_resa

Untitled

Sep 17th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.23 KB | None | 0 0
  1. select DistricT_ID, Academic_Year_Id, count(*)
  2. from rpt_Student_Course_Schedule
  3. where 1=1
  4. and Primary_Teacher_List IS NOT NULL
  5. and Academic_Year_Id = 2018
  6. group by Academic_Year_Id, District_Id
  7. ORDER BY District_Id, Academic_Year_Id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement