Skip to content

Commit fa0d2b3

Browse files
author
Robert Gelb
committed
updated examples
1 parent b29d492 commit fa0d2b3

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Views/Home/About.cshtml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
@{
22
ViewData["Title"] = "SQL to Elastic Search Converter";
33
}
4-
<h2>Small application to convert SQL queries to ElasticSearch syntax</h2>
4+
<h2>Convert SQL queries to ElasticSearch syntax</h2>
55

6-
<p>The application supports a very limited subset of sql. This is a work in progress. Here are examples of what works:</p>
6+
<p>The application supports a very limited subset of sql. This is a work in progress. Here are some examples of what works.</p>
7+
<div style="height:10px;"></div>
78

9+
<h4>SELECT with specific column names and a variety of criteria</h4>
810
<code style="padding:initial">
911
SELECT name, type, state, pin<br />
1012
FROM cities<br />
@@ -18,6 +20,7 @@
1820

1921
<div style="height:15px;"></div>
2022

23+
<h4>SELECT all columns with criteria</h4>
2124
<code style="padding:initial">
2225
SELECT *<br />
2326
FROM Planets<br />
@@ -26,6 +29,7 @@
2629

2730
<div style="height:15px;"></div>
2831

32+
<h4>GROUP BY with criteria</h4>
2933
<code style="padding:initial">
3034
SELECT SolarSystem, Galaxy<br />
3135
FROM Planets<br />

Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<div class="navbar-collapse collapse">
5050
<ul class="nav navbar-nav navbar-right">
5151
<li><a asp-area="" asp-controller="Home" asp-action="Index">New Query</a></li>
52-
<li><a asp-area="" asp-controller="Home" asp-action="About">About</a></li>
52+
<li><a asp-area="" asp-controller="Home" asp-action="About">Examples</a></li>
5353
</ul>
5454
</div>
5555
</div>

0 commit comments

Comments
 (0)