You are here: Home >Posts Tagged ‘MySQL

MySQL Maintaining Database Tables

Summary: MySQL provides several commands to allow you to maintain database table more efficiently. Those commands enable you to analyze, optimize, check, and repair the database tables. In this tutorial, you will learn those MySQL command to maintain database tables. Analyze table statement Basically analyze table statement allows you to update cardinality of an index column. [...]

Tags: ,

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

MySQL Basic CREATE TABLE statement

Basic CREATE TABLE statement A very basic CREATE TABLE statement which should work in any SQL database: mysql> CREATE TABLE example ( id INT, data VARCHAR(100) ); Query OK, 0 rows affected (0.03 sec) Creating a table with a particular storage engine MySQL provides a variety of different table types with differing levels of functionality. [...]

Tags: , , , ,

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Deleting multiple rows from mysql with checkbox

บทความนี้จะเป็นวิธีการลบข้อมูลออกจากฐานข้อมูลที่ละหลายๆ rows โดยใช้ PHP & MySQL and HTML checkbox

Tags: , , ,

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

How to Back Up and Restore a MySQL Database

การสำรองข้อมูลดาต้าเบส MySQL ปกติทั่วไปจะทำการ Backup MySQL ผ่าน phpMyAdmin แต่เนื่องด้วย phpMyAdmin มีข้อจำกัดเรื่องเวลาขนาดของข้อมูลที่มีขนาดใหญ่มากๆ ลองมาใช้ mysqldump เพราะน่าจะเป็นคำตอบที่ดีกว่า

Tags: , , , , , , , ,

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS