在shell下使用MySQL,按照下面的方法。
$mysql -u -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代码实现数据库的创建;
3、使用php3创建一个表: