|
|
|
ติดการ INSERT INTO ช่วยทีครับให้ลงในตารางพวก ID ที่เป็น Autonumber |
|
|
|
|
|
|
|
ต้องการดึงข้อมูล ID ของแต่ละตาราง ลงมาตาราง Shopping_Cart2 อะครับ แต่ละตารางมันเป็น autonumber หมดเลยอะครับ
ยกเว้น amount มันเป็น number
DB
ตาราง Product
ProductID , id , ProductName , ProductPrice , ProductDetail , amount , Productimh
ตาราง ProductType
id , ProductType
ตาราง Shopping_Cart
id , SumPrice
ตาราง Shopping_Cart2
id , idshopping , ProductID , amount
Code (PHP)
$sql="INSERT INTO Shopping_Cart2 (idShopping,ProductID,amount) VALUES (อยากทราบว่าตรงนี้ต้องใส่ตัวแปรอะไรครับ)";
Tag : PHP, Ms Access
|
|
|
|
|
|
Date :
2011-01-12 16:26:25 |
By :
thegun |
View :
904 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กรณีที่เป็น Auto Increment ไม่ต้องระบุ Column ครับ เช่น
Code (PHP)
$sql="INSERT INTO Shopping_Cart2 (ProductID,amount) VALUES ('ProductID','amount')";
|
|
|
|
|
Date :
2011-01-12 17:26:01 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|