grammar.jsp 1.7 KB
Newer Older
1 2 3 4 5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 
Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html). 
Initial Developer: H2 Group
-->
6
<html><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>
7
SQL Grammar
8
</title><link rel="stylesheet" type="text/css" href="stylesheet.css" />
9 10 11 12 13 14 15
<script type="text/javascript" src="navigation.js"></script>
</head><body onload="frameMe();">
<table class="content"><tr class="content"><td class="content"><div class="contentDiv">

<h1>SQL Grammar</h1>
<h2>Commands (Data Manipulation)</h2>
<c:forEach var="item" items="commandsDML">
16
    <a href="#sql${item.id}">${item.topic}</a><br />
17 18 19
</c:forEach>
<h2>Commands (Data Definition)</h2>
<c:forEach var="item" items="commandsDDL">
20
    <a href="#sql${item.id}">${item.topic}</a><br />
21 22 23
</c:forEach>
<h2>Commands (Other)</h2>
<c:forEach var="item" items="commandsOther">
24
    <a href="#sql${item.id}">${item.topic}</a><br />
25 26 27
</c:forEach>
<h2>Other Grammar</h2>
<c:forEach var="item" items="otherGrammar">
28
    <a href="#sql${item.id}">${item.topic}</a><br />
29 30 31
</c:forEach>

<c:forEach var="item" items="commands">
32
<br />
33 34 35 36 37
<a name="sql${item.id}"></a><h3>${item.topic}</h3>
<pre>
${item.syntax}
</pre>
<p>
38 39
${item.text}
</p>
40
<b>Example:</b><br />
41
${item.example}
42
<br />
43 44 45
</c:forEach>

<c:forEach var="item" items="otherGrammar">
46
<br />
47 48 49 50 51
<a name="sql${item.id}"></a><h3>${item.topic}</h3>
<pre>
${item.syntax}
</pre>
<p>
52 53
${item.text}
</p>
54
<b>Example:</b><br />
55
${item.example}
56
<br />
57 58 59
</c:forEach>

</div></td></tr></table></body></html>