|
|
|
ช่วยแก้ id ซ้ำกันให้หน่อยคับ ไม่รุจะแก้ตรงไหน เกี่ยวกับรหัสลูกค้า |
|
|
|
|
|
|
|
ฟิลด์ customerid รับค่าที่คำนวณมาเองใช่รึเปล่าครับ
คงเป็นเพราะใช้การ COUNT(*) จำนวนรายการแล้วบวก 1
ลองใช้เป็น MAX(customerid ) แล้ว +1 แทนนะครับ
----------------------------------------------------------------
ปล. ถ้าได้ตัวอย่าง SQL ที่ใช้จะวิเคราะห์ได้ง่ายขึ้นครับ
|
|
|
|
|
Date :
2013-04-10 16:32:23 |
By :
Naizan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql_numcode="select MAX(customerid) AS maxID from products";
$db_queryr=mysql_db_query($db,$sql_numcode);
$result_numcode=mysql_fetch_array($db_queryr);
$num_rows_code = $result_numcode['maxID'];
$num_rows_code = str_replace("CU", "", $num_rows_code);
$run_number = $num_rows_code+1;
|
ประวัติการแก้ไข 2013-04-10 16:52:17
|
|
|
|
Date :
2013-04-10 16:51:43 |
By :
Naizan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้เเล้วครับ ..ขอบคุณมากครับ +1
|
|
|
|
|
Date :
2013-04-10 17:14:40 |
By :
donkey |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|