Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > จะ insert ข้อมูลจากตารางที่ union กัน 3 ตาราง ไปลงอีก ตารางหนึ่ง ใน Database ทำไงครับ



 

จะ insert ข้อมูลจากตารางที่ union กัน 3 ตาราง ไปลงอีก ตารางหนึ่ง ใน Database ทำไงครับ

 



Topic : 065824



โพสกระทู้ ( 446 )
บทความ ( 0 )



สถานะออฟไลน์




Code (PHP)
// Invoice Detail
$sql= " (select webreg__tax_invoice_item.description
       ,webreg__tax_invoice_item.unit_amount,webreg__tax_invoice_item.amount
       from webreg__pending_order,webreg__tax_invoice_item
       where  webreg__pending_order.invoice_item_id = webreg__tax_invoice_item.id
       and webreg__pending_order.username='$bp' and webreg__pending_order.status='Approve'
       and (date(webreg__pending_order.process_date) between '$date1' and '$date2')
       order by webreg__pending_order.process_date )
       
       UNION ALL
       
       ( select webreg__tax_invoice_item.description
       ,webreg__tax_invoice_item.unit_amount,webreg__tax_invoice_item.amount
       from webreg__pending_renew,webreg__tax_invoice_item
       where webreg__pending_renew.invoice_item_id = webreg__tax_invoice_item.id
       and webreg__pending_renew.username='$bp' and webreg__pending_renew.status='Approve'
       and (date(webreg__pending_renew.process_date) between '$date1' and '$date2')
       order by webreg__pending_renew.process_date  )
       
       UNION ALL
       
      ( select webreg__tax_invoice_item.description,webreg__tax_invoice_item.unit_amount
      ,webreg__tax_invoice_item.amount
       from webreg__pending_transfer_in,webreg__tax_invoice_item
       where webreg__pending_transfer_in.invoice_item_id = webreg__tax_invoice_item.id
       and webreg__pending_transfer_in.username='$bp' and webreg__pending_transfer_in.status='Approve'
       and (date(webreg__pending_transfer_in.process_date) between '$date1' and '$date2')
       order by webreg__pending_transfer_in.process_date)
      LIMIT $Page_Start,$Per_Page";


while($rows=mysql_fetch_array($result))
{
   
    echo"<tr><td>".$i."</td><td>".$rows['description']."</td><td>".$rows['unit_amount']."</td></tr>";
  $i++;




ผมขอถามเลยและกัน ผม tableไป union allกัน แล้วผมจะ insertข้อมูลทั้งหมด $rows['description'] $rows['unit_amount']
ลงไปในtable Invoice ได้อย่างไร ขอตัวอย่างโค๊ดหน่อยครับ ทำยากจิงๆๆ วนLoopไม่เป็น มันerror
}



Tag : PHP, MySQL







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-09-02 16:15:10 By : sambrazil View : 1191 Reply : 5
 

 

No. 1



โพสกระทู้ ( 446 )
บทความ ( 0 )



สถานะออฟไลน์


INSERT INTO [Table-Name] (Column1,Column2,Column3,...) SELECT (Column1,Column2,Column3,...) WHERE ...
รุ้ว่าไช้อันนี้ แต่ประยุกต์ยังไงกับ

Code (PHP)
$sql= " (select webreg__tax_invoice_item.description
,webreg__tax_invoice_item.unit_amount,webreg__tax_invoice_item.amount
from webreg__pending_order,webreg__tax_invoice_item
where webreg__pending_order.invoice_item_id = webreg__tax_invoice_item.id
and webreg__pending_order.username='$bp' and webreg__pending_order.status='Approve'
and (date(webreg__pending_order.process_date) between '$date1' and '$date2')
order by webreg__pending_order.process_date )

UNION ALL

( select webreg__tax_invoice_item.description
,webreg__tax_invoice_item.unit_amount,webreg__tax_invoice_item.amount
from webreg__pending_renew,webreg__tax_invoice_item
where webreg__pending_renew.invoice_item_id = webreg__tax_invoice_item.id
and webreg__pending_renew.username='$bp' and webreg__pending_renew.status='Approve'
and (date(webreg__pending_renew.process_date) between '$date1' and '$date2')
order by webreg__pending_renew.process_date )

UNION ALL

( select webreg__tax_invoice_item.description,webreg__tax_invoice_item.unit_amount
,webreg__tax_invoice_item.amount
from webreg__pending_transfer_in,webreg__tax_invoice_item
where webreg__pending_transfer_in.invoice_item_id = webreg__tax_invoice_item.id
and webreg__pending_transfer_in.username='$bp' and webreg__pending_transfer_in.status='Approve'
and (date(webreg__pending_transfer_in.process_date) between '$date1' and '$date2')
order by webreg__pending_transfer_in.process_date)
LIMIT $Page_Start,$Per_Page";







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-09-02 16:48:30 By : sambrazil
 


 

No. 2



โพสกระทู้ ( 446 )
บทความ ( 0 )



สถานะออฟไลน์


ทำไม่เป็นครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-09-02 16:48:54 By : sambrazil
 

 

No. 3



โพสกระทู้ ( 110 )
บทความ ( 0 )



สถานะออฟไลน์


https://www.thaicreate.com/tutorial/sql-union.html
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-09-02 17:15:37 By : treza
 


 

No. 4



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ถ้ามันเขียนยากจริง ๆ ก็ใช้การ Select UNION จาก 3 ตารางแล้วค่อยใช้ php fetch เป็น loop แล้ว insert แต่ล่ะ row ลงใน table ใหม่ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-09-02 17:22:17 By : webmaster
 


 

No. 5



โพสกระทู้ ( 446 )
บทความ ( 0 )



สถานะออฟไลน์


ลองทำแบบพี่วนิบอกแล้วมัน errorอะครับ
พี่วินลองทำให้ดูหน่อยครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-09-03 00:51:26 By : sambrazil
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : จะ insert ข้อมูลจากตารางที่ union กัน 3 ตาราง ไปลงอีก ตารางหนึ่ง ใน Database ทำไงครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่