What would this “.cfm” file look like?
<cfquery name=“student_list” datasource=“student_db”>
SELECT studentID, studentName
<TITLE>CF Query example</TITLE>
<cfoutput query=“student_list”>
#studentID# -- #studentName#
Once finished the “.cfm” file would look like this.