zircon06
Technical User
- Jan 8, 2007
- 81
UPDATE studentmaster
SET active = 0
FROM studentdetail
WHERE studentmaster .orderset_sys = studentdetail.orderset_sys
AND order_text like '%continuation of class%'and class_ID= ' 400000'
Thanks in advance
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT studentmaster, *
--UPDATE studentmaster SET active = 0
FROM
studentdetail
INNER JOIN studentmaster ON studentmaster.orderset_sys = studentdetail.orderset_sys
WHERE order_text like '%continuation of class%'and class_ID= ' 400000'
UPDATE studentmaster
SET active = 0
FROM studentdetail, studentmaster
WHERE studentmaster.orderset_sys =
studentdetail.orderset_sys
AND order_text like '%continuation of class%'and class_ID= ' 400000'