最简单mysql的使用方法

发表于:2007-07-02来源:作者:点击数: 标签:
1、在shell下使用mysql,按照下面的方法。 $mysql -u your username -p password: mysqlshow databases; //显示有哪些 数据库 mysqlcreate DATABASE lll; //创建一个名为lll的数据库 mysqluse lll; //使用名为lll的数据库 mysqlshow tables; //显示当前数据


1、在shell下使用mysql,按照下面的方法。
$mysql -u <your username> -p
password:
mysql>show databases; //显示有哪些数据库
mysql>create DATABASE lll; //创建一个名为lll的数据库
mysql>use lll; //使用名为lll的数据库
mysql>show tables; //显示当前数据库中有哪些表
mysql>CREATE TABLE user (username TEXT not null , userpassword TEXT not null ) ; //创建一个表
mysql>ALTER TABLE user ADD email TEXT not null; //当前表增加一个字段
mysql>ALTER TABLE test DROP come; //当前表丢弃一个字段
mysql>ALTER TABLE test CHANGE pass pass LONGTEXT not null; //更改当前表中的一个字段
mysql>DROP TABLE user; //丢弃当前数据库中的一个表。

2、php3代码实现数据库的创建;
<?php
$dbc=mysql_connect("localhost","youruser","yourpassword");
mysql_create_db(zzz); //创建一个名为zzz的数据库
echo "成功";
?>
3、使用php3创建一个表:
<?php
$dbc=mysql_connect("localhost","root","");
mysql_select_db("zzz",$dbc);
mysql_query("CREATE TABLE user (username TEXT not null , userpassword TEXT not null )");

原文转自:http://www.ltesting.net