Difference between revisions of "OracleSampleData"

From mi-linux
Jump to navigationJump to search
Line 2: Line 2:
  
 
<h3>DEPT Table</h3>
 
<h3>DEPT Table</h3>
<pre>
+
<table>
DEPTNO DNAME         LOC
+
<th>DEPTNO</th><th>DNAME</th><th>LOC</th>
10 ACCOUNTING NEW YORK
+
<tr><td>10</td><td>ACCOUNTING</td><td> NEW YORK</td></tr>
20 RESEARCH DALLAS
+
<tr><td>20</td><td>RESEARCH </td><td>DALLAS</td></tr>
30 SALES         CHICAGO
+
<tr><td>30</td><td>SALES </td><td>        CHICAGO</td></tr>
40 OPERATIONS BOSTON
+
<tr><td>40</td><td>OPERATIONS BOSTON</td></tr>
</pre>
+
</table>

Revision as of 16:11, 9 January 2016

Sample DataSet

DEPT Table

DEPTNODNAMELOC
10ACCOUNTING NEW YORK
20RESEARCH DALLAS
30SALES CHICAGO
40OPERATIONS BOSTON