You are here: Home >Posts Tagged ‘Statement

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

SQL DROP INDEX, DROP TABLE, DROP VIEW, DROP DATABASE

บทความความนี้จะมาแนะนำวิธีการลบอินเด็กซ์ เทเบิล วิว และดาต้าเบส ด้วยรูปแบบคำสั่งของ SQL Command ง่ายๆ ครับ. Indexes, tables, view,and databases can easily be deleted/removed with the DROP statement.

Tags: , , , , , ,

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