grammar.jsp 1.7 KB
Newer Older
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<!-- 
3
Copyright 2004-2007 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html). 
4 5
Initial Developer: H2 Group
-->
6 7
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>
8
SQL Grammar
9
</title><link rel="stylesheet" type="text/css" href="stylesheet.css" />
10 11 12 13 14 15 16
<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">
17
    <a href="#sql${item.id}">${item.topic}</a><br />
18 19 20
</c:forEach>
<h2>Commands (Data Definition)</h2>
<c:forEach var="item" items="commandsDDL">
21
    <a href="#sql${item.id}">${item.topic}</a><br />
22 23 24
</c:forEach>
<h2>Commands (Other)</h2>
<c:forEach var="item" items="commandsOther">
25
    <a href="#sql${item.id}">${item.topic}</a><br />
26 27 28
</c:forEach>
<h2>Other Grammar</h2>
<c:forEach var="item" items="otherGrammar">
29
    <a href="#sql${item.id}">${item.topic}</a><br />
30 31 32
</c:forEach>

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

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

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