กรุณาปิด โปรแกรมบล๊อกโฆษณา เพราะเราอยู่ได้ด้วยโฆษณาที่ท่านเห็น
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 - 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.png


test = ชื่อ table
 

Similar threads

  • บทความ บทความ
ตอบ
2
อ่าน
157
ตอบ
0
อ่าน
261
  • ปักหมุด
  • บทความ บทความ
ตอบ
0
อ่าน
352
    • Like
  • บทความ บทความ
ตอบ
0
อ่าน
386



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