WEB开发网
开发学院数据库MySQL MySQL新手入门指南--快速参考 (2) 阅读

MySQL新手入门指南--快速参考 (2)

 2007-11-11 16:43:27 来源:WEB开发网   
核心提示: 二、MySQL(和PHP搭配之最佳组合)使用导引 1.运用MySQL(和PHP搭配之最佳组合)建立新数据库 在shell下运行: $>MySQL(和PHP搭配之最佳组合)admin create database01 Database "database01" created. 2.启动M
   二、MySQL(和PHP搭配之最佳组合)使用导引   1.运用MySQL(和PHP搭配之最佳组合)建立新数据库   在shell下运行:   $>MySQL(和PHP搭配之最佳组合)admin create database01   Database "database01" created.   2.启动MySQL(和PHP搭配之最佳组合)   在shell下运行:   $>MySQL(和PHP搭配之最佳组合)   Welcome to the MySQL(和PHP搭配之最佳组合) monitor. Commands end with ; or g.   Your MySQL(和PHP搭配之最佳组合) connection id is 22 to server version: 3.21. 29a-gamma-debug   Type 'help' for help.   3.更换数据库   MySQL(和PHP搭配之最佳组合)>use database01   database changed.   4.创建表   MySQL(和PHP搭配之最佳组合)>create table table01 (field01 integer, field02 char(10));   Query OK, 0 rows affected (0.00 sec)   5.列出表清单   MySQL(和PHP搭配之最佳组合)>show tables;   Tables in database01   Table01   table02   6.列出表中的字段清单   MySQL(和PHP搭配之最佳组合)>show columns from table01;   Field Type Null Key Default Extra   field01 int(11) YES   field02 char(10) YES   7.表的数据填写   插入数据   MySQL(和PHP搭配之最佳组合)>insert into table01 (field01, field02) values (1, 'first');   Query OK, 1 row affected (0.00 sec)   8.字段的增加   ...一次一个字段   MySQL(和PHP搭配之最佳组合)>alter table table01 add column field03 char(20);   Query OK, l row affected (0.04 sec)   Records: 1 Duplicates: 0 Warnings: 0   ...一次多个字段   MySQL(和PHP搭配之最佳组合)>alter table table01 add column field04 date, add column field05 time;   Query OK, l row affected (0.04 sec)   Records: 1 Duplicates: 0 Warnings: 0   注意:每一列都必须以"add column"重新开始。   它运行了吗?让我们看看。   MySQL(和PHP搭配之最佳组合)>select * from table01;   field01 field02 field03 field04 field05   1 first NULL NULL NULL

Tags:MySQL 新手入门 指南

编辑录入:coldstar [复制链接] [打 印]
赞助商链接