Last active
October 3, 2022 10:14
-
-
Save erwinagpasa/237fbedf1f05d94742cbdab494bf922d to your computer and use it in GitHub Desktop.
Powerschool SIS - Basic Student Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Basic Student Query</title> | |
</head> | |
<body> | |
<table> | |
<thead><th>Name</th></thead> | |
<tbody> | |
~[tlist_sql; | |
SELECT lastfirst FROM Students WHERE Grade_Level = 12 | |
;] | |
<tr><td>~(lastfirst)</td></tr> | |
[/tlist_sql] | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment