กรุณาปิด โปรแกรมบล๊อกโฆษณา เพราะเราอยู่ได้ด้วยโฆษณาที่ท่านเห็น
Please close the adblock program. Because we can live with the ads you see


Change storage engine from MyISAM to InnoDB - USING phpmyadmin

วิธีการทํา Change storage engine from MyISAM to InnoDB - USING phpmyadmin

Change storage engine from MyISAM to InnoDB - all tables at once - USING phpmyadmin

เปิด phpmyadmin แล้วไปที่ tab sql แล้วใส่โค๊ดด้านล่างนี้
SQL:
SELECT CONCAT("ALTER TABLE ", table_name, " ENGINE=InnoDB;
")
    FROM information_schema.tables
    WHERE engine='MyISAM'
      AND table_schema='test';
แล้วคลิก GO

2018-02-28_10-08-00.webp


test = ชื่อ table
 

ไฟล์แนบ

  • 2018-02-28_10-08-00.webp
    2018-02-28_10-08-00.webp
    26.6 กิโลไบต์ · จำนวนการดู: 250

กรุณาปิด โปรแกรมบล๊อกโฆษณา เพราะเราอยู่ได้ด้วยโฆษณาที่ท่านเห็น
Please close the adblock program. Because we can live with the ads you see
กลับ
ยอดนิยม ด้านล่าง