aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces/English.lproj/Help/topics/sample_query.html
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-09-23 13:29:10 +0000
committerstuconnolly <stuart02@gmail.com>2009-09-23 13:29:10 +0000
commit1d0c281511ce7b35c7e06475d7e147db5a656575 (patch)
tree178e868b0a68fa64effab49f56d15700b036eb4f /Interfaces/English.lproj/Help/topics/sample_query.html
parent0e2f213358334452a256b0873fde14395da8e210 (diff)
downloadsequelpro-1d0c281511ce7b35c7e06475d7e147db5a656575.tar.gz
sequelpro-1d0c281511ce7b35c7e06475d7e147db5a656575.tar.bz2
sequelpro-1d0c281511ce7b35c7e06475d7e147db5a656575.zip
Rename (currently unused) help folder.
Diffstat (limited to 'Interfaces/English.lproj/Help/topics/sample_query.html')
-rwxr-xr-xInterfaces/English.lproj/Help/topics/sample_query.html81
1 files changed, 81 insertions, 0 deletions
diff --git a/Interfaces/English.lproj/Help/topics/sample_query.html b/Interfaces/English.lproj/Help/topics/sample_query.html
new file mode 100755
index 00000000..66b249fd
--- /dev/null
+++ b/Interfaces/English.lproj/Help/topics/sample_query.html
@@ -0,0 +1,81 @@
+<html>
+<head>
+<title>Sequel Pro Help - SQL Query Examples</title>
+<meta name="AppleTitle" content="SQL Query Examples">
+<meta name="AppleFont" content="Lucida Grande">
+<meta ROBOTS="robots" CONTENT="anchors">
+</head>
+<body text="#000000" link="#0000FF" alink="#0000FF" vlink="#0000FF" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
+
+<font face="Lucida Grande,Geneva,Arial">
+
+<br>
+
+<table border="0" cellpadding="0" cellspacing="0" width="100%" height="80">
+ <tr>
+ <td align="left" valign="top" width="70">
+ <img src="sequel-pro_logo.jpg" width="60" height="60" border="0">
+ </td>
+ <td align="left"><h1>SQL Query Examples</h1>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <img src="bar.gif" width="100%" height="20">
+ </td>
+ </tr>
+</table>
+
+<br>
+<font size="-1">
+&nbsp;<a href="../index.html">Back to the main menu</a>
+<br>
+<br>
+<table border="0" width="95%">
+ <tr>
+ <td>
+ <font face="Lucida Grande,Geneva,Arial" size="-1">
+ The following queries are only examples and any use of these queries in a company or critical environment
+ signifies the prior knowledge and acceptance, on behalf of the implentor, that the authors of this software are not liable for damages or losses in use of these queries.
+ No guarantees are made as to the quality or reliabity of the queries listed below. They are listed to help database designers/creators in their
+ work by showing an example.
+ </font>
+ </td>
+ </tr>
+</table>
+<br>
+<br>
+<table border="0" cellpadding="5" cellspacing="10" width="100%" align="center">
+ <tr>
+ <td valign="top" bgcolor="#EAEAEA">
+ <font face="Lucida Grande,Geneva,Arial" size="-1">
+ <b>Example SELECT Query</b>
+ <hr>
+ This obtains information an account table and only returns the accounts with logins of 1 or more,
+ ordered alphabetically by the person's name.
+ <br>
+ <br>
+ <b>SELECT * FROM accounts WHERE LoginCount > 1 ORDER BY Name</b>
+ <br>
+ </font>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" bgcolor="#EAEAEA">
+ <font face="Lucida Grande,Geneva,Arial" size="-1">
+ <b>Example DELETE Query</b>
+ <hr>
+ This query deletes one row of data from a product table.
+ <br>
+ <br>
+ <b>DELETE FROM products WHERE ProductID=5 LIMIT 1</b>
+ <br>
+ </font>
+ </td>
+ </tr>
+</table>
+
+</font>
+
+</body>
+</html> \ No newline at end of file