我試圖總結我上次開始如何自動生成序列號的步驟,如此處所示Auto generate serial numbers。就我自己而言,我已經能夠提出一個代碼給我我想要的東西。回覆:自動生成自動增量編號
使用這行代碼
SELECT COUNT(donor_id) + 1 AS Counter
FROM tbl_donors
我想是6 + 1的值;即6是記錄的總數,1是新記錄的附加數。但現在如何將它添加到將顯示這裏看到的所有值的表集http://www.netdataflow.com/rbme/是我遇到問題的地方。我使用Dreamweaver來建立我的桌面,下面是桌面代碼
<div align="center">
<table width="1100" border="0" cellpadding="0" cellspacing="0">
<tr id="colhead">
<td width="30" height="30" id="labels"><div align="center"><strong>ID</strong>
</div></td>
<td width="200" height="30" id="labels"><div align="center"><strong>Donor
Name</strong></div></td>
<td width="100" height="30" id="labels"><div align="center">
<strong>Designation</strong></div></td>
<td width="250" height="30" id="labels"><div align="center">
<strong>Address</strong></div></td>
<td width="80" height="30" id="labels"><div align="center"><strong>City</strong>
</div></td>
<td width="80" height="30" id="labels"><div align="center"><strong>State</strong>
</div></td>
<td width="80" height="30" id="labels"><div align="center">
<strong>Country</strong></div></td>
<td width="100" height="30" id="labels"><div align="center"><strong>Phone</strong>
</div></td>
<td width="150" height="30" id="labels"><div align="center"><strong>Email
Address</strong></div></td>
</tr>
<?php do { ?>
<tr <?php
// technocurve arc 3 php bv block2/3 start
echo " style=\"background-color:$color\"";
// technocurve arc 3 php bv block2/3 end
?> id="rowlines">
<td id="labels"><div align="center"><?php echo $row_rsdonors['donor_id']; ?>
</div></td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['donorname']; ?>
</div></td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['designation']; ?>
</div></td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['address']; ?>
</div></td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['city']; ?></div>
</td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['state']; ?></div>
</td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['country']; ?>
</div></td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['phone']; ?></div>
</td>
<td id="labels"><div align="center"><?php echo $row_rsdonors['emailaddr']; ?>
</div></td>
</tr>
<?php
// technocurve arc 3 php bv block3/3 start
if ($color == $color1) {
$color = $color2;
} else {
$color = $color1;
}
任何人都可以幫忙嗎?如果可能的話,我會想添加到
SELECT COUNT(donor_id) + 1 AS Counter
FROM tbl_donors
到表格的第一行之前的ID。我願意接受任何其他的想法或方式,或者可以手動編碼表格,而不是使用Dreamweaver動態表格集。
我很感激你提前幫忙。
邁克
我不明白你所說的「汽車」 – Strawberry
的定義現場處理這個? –
@Strawberry:對不起,重複。我只是想說自動生成或auto_increment號碼 –