ทำอย่างไรให้แทรก $sql ได้ทีละ 2 code พร้อมกันครับ
มั่วแล้ว
inset มีที่ใหนแบบนี
insert into section set sub_id='$subid' ,section='$section'
มันผสมกันระหว่าง Insert+Update แล้วครับ
Date :
20 ก.ย. 2549 14:58:39
By :
xman
ในกรณีของการ insert ลองอย่างนี้ดูครับ
INSERT INTO `categories` ( `id` , `parent_id` , `name` , `description` )
VALUES
(1, '2', 'test1', 'test1.1'),
(2, '3', 'test2', 'test2.2');
Date :
20 ก.ย. 2549 15:00:19
By :
nut_t02
คห1. ผมมือใหม่ครับ แล้ว insertหรือ update ที่ถูกต้องเขียนยังไงครับ
คห2. ผมต้องการ insert ไป 2 ตารางพร้อมกันครับ ควรทำอย่างไรครับ
ขอบคุณทุกท่านครับ
Date :
20 ก.ย. 2549 15:10:17
By :
tony
1. เอาตรง set กะ ชื่อfiled= ออก
2. ไม่รู้เขาจะมามั้ย
แต่ถ้าเป็นผมทำงี้อะ
$query = mssql_query("INSERT INTO section values ('$subid','$section')") or die("table1_error");
$query1 = mssql_query("INSERT INTO subject values ('$subid','$subname')") or die("table1_error");
สมมติ ในกรณีที่ มี filed ใน table มากกว่า 2 filed ที่ไม่ต้องการใส่ค่าให้ใส่ '' (ไม่ใชฟันหนูนะ คอมมาร์ 2 อันนะคับ)
เช่น ใน table คุณมี filed sub_id name section
เวลาเขียน insert into section values ('$subid','','$section')
ลองดูคับ
Date :
20 ก.ย. 2549 19:32:39
By :
ไม่ลองไม่รู้
ได้แล้วครับ ขอบคุณครับ คุณ ไม่ลองไม่รู้
Date :
20 ก.ย. 2549 21:41:58
By :
tony
Load balance : Server 03