|
楼主 |
发表于 2005-12-21 02:40:40
|
显示全部楼层
常用命令
mysql>下面:
create database 数据库名
use 数据库名
select database()
create table 表名(字段名1 类型 [not null],... );
describe 表名;
show tables
show databases
insert into 表名 value(字段1值,字段2值,...);
select 字段1,字段2,... from 表明 where 条件;
\q 退出mysql |
|