คอมพิวเตอร์และอินเตอร์เน็ต,บรรยายวิชาการ,วิจัย,ศึกษากุรอาน,E-Book

วันอาทิตย์ที่ 3 มีนาคม พ.ศ. 2562

R2R คป.สอ. จะแนะ



                                                         download เอกสารที่เกี่ยวข้อง

MilestoneR2R

ขั้นตอน ผลการปฏิบัติ
1.กำหนดปัญหา บทที่ 1
 - ความเป็นมาและความสำคัญ
 - วัตถุประสงค์การศึกษา
 - สมมติฐานการวิจัย
 - ขอบเขตการศึกษาระยะห่าง 
     - ขอบเขตเนื้อหา
     - ขอบเขตประชากรและกลุ่มตัวอย่าง
     - ขอบเขตระยะเวลา
     - ขอบเขตตัวแปร
 - นิยามศัพท์
 - ประโยชน์ที่ได้รับ
2.ทบทวน บทที่ 2
 - ทฤษฎีแนวคิด
 - งานวิจัยที่เกี่ยวข้อง
3.จัดรูปแบบและวิธีการ บทที่ 3
 - ประชากรและกลุ่มตัวอย่าง
 - เครื่องมือที่ใช้ในการวิจัย
4.เก็บข้อมูล ภาคสนาม
 - เก็บข้อมูลตามแบบสอบถาม
5.วิเคราะห์ข้อมูลที่ได้เก็บมา key ข้อมูล
ใช้โปรแกรมวิเคราะห์ข้อมูล
พิมพ์ print out
6.เขียนผลการวิเคราะห์ข้อมูล บทที่ 4
 - ข้อมูลทั่วไป
 - ผลการวิเคราะห์
7.สรุป อภิปรายผลและข้อเสนอแนะ บทที่ 5
 - สรุปผลการศึกษา
 - อภิปรายผล
 - ข้อเสนอแนะ

วันเสาร์ที่ 2 มีนาคม พ.ศ. 2562

Create MySQL table by using another table

Create MySQL table by using another table

syntax :
     CREATE TABLE [IF NOT EXISTS] new_tbl [AS] SELECT * FROM existing_tbl;

1. Create an exact copy of an existing table.
      create table products_bk
         as
         select * from products

2. Create a new table based on one or more existing tables.
      create table product_sold_by_order
        as
        select distinct y.OrderID, 
          y.ProductID, 
          x.ProductName, 
          y.UnitPrice, 
          y.Quantity, 
          y.Discount, 
          round(y.UnitPrice * y.Quantity * (1 - y.Discount), 2) as TotalSales
        from Products x
          inner join Order_Details y on x.ProductID = y.ProductID
          order by y.OrderID;

3. Create a new table based on one or more existing tables, 
and at the same time create extra new column(s).
      create table product_sold_by_order2(ID int not null auto_increment, PRIMARY KEY (ID))
        as
        select distinct y.OrderID, 
          y.ProductID, 
          x.ProductName, 
          y.UnitPrice, 
          y.Quantity, 
          y.Discount, 
          round(y.UnitPrice * y.Quantity * (1 - y.Discount), 2) as TotalSales
        from Products x
          inner join Order_Details y on x.ProductID = y.ProductID
          order by y.OrderID;

ref and more detail at http://www.geeksengine.com/database/manage-table/create-table-as.php