如何使用数据库表填充单元格

时间:2015-09-08 15:49:35

标签: html sql

我想知道如何从数据库表中填充表的整列?使用HTML和SQL?我正在使用Toad for Oracle并使用MySQL作为编译器。我只是想用循环填充一列,但不知道该怎么做?

如果我有一张像这样的表:

Table1
------
  Y
  N
  Y

以下是程序代码:

procedure proc1

is

begin 


HTP.P('

<HTML>
<BODY>

<b> <font size="4" color=black>Status Log</font> </b>
<table bgcolor="black" width=1020 align="center" border="0"  cellspacing="1" class="sortable"><THEAD><tr bgcolor="#CCCCCC">


');



htp.p('

<th width=30 align=left><font size="2">Phase</font></th>

        <td>  </td>

<th width=50 align=left><font size="2">State</font></th>

        <td>  </td>

<th width=414 align=left><font size="2">CHG</font></th>

        <td>  </td>

<th width=30 align=left><font size="2">Changes</font></th>

        <td>  </td>

<th width=180 align=left><font size="2">Completed</font></th>

        <td>  </td>

</table>

</BODY>
</HTML>

');

end proc1;

0 个答案:

没有答案