首页 > 数据库 > MySQL > 正文

MySQL 4.1.0 中文参考手册 --- 6.6 基本的 MySQL 用户实用命令

2024-07-24 12:54:51
字体:
来源:转载
供稿:网友

mysql 4.1.0 中文参考手册 --- 犬犬(心帆)翻译 mysql reference manual for version 4.1.0-alpha.

6.6 基本的 mysql 用户实用命令6.6.1 use 句法


use db_name

use db_name 语句告诉 mysql 使用 db_name 数据库作为以后查询的缺省数据库。数据库保持为当前数据库,只到该会话结束或另一个 use 语句发出:

mysql> use db1;mysql> select count(*) from mytable; # 从 db1.mytable 中选择mysql> use db2;mysql> select count(*) from mytable; # 从 db2.mytable 中选择

依靠 use 语句将一个特定数据库设为当前数据库,它并不阻止你访问另一个数据中的表。下面的示例访问 db1 数据库中的 author 表和 db2 数据库中的 editor 表:

mysql> use db1;mysql> select author_name,editor_name from author,db2.editor -> where author.editor_id = db2.editor.editor_id;

use 语句提供了对 sybase 的兼容。
6.6.2 describe 句法 (获得列的信息)


{describe | desc} tbl_name [col_name | wild]

describe 是 show columns from 的缩写。查看章节 4.5.6.1 检索有关数据库、表、列和索引的信息。

describe 提供有关一个表的列信息。col_name 可以是一个列名或是一个包含 sql 通配符字符 “%” 和 “_” 的字符串。没有必要用引号包围字符串。

如果列类型不同于你所期望的基于一个 create table 语句建立的列,注意 mysql 有时会更改列类型。查看章节 6.5.3.1 隐式的列定义变化.

这个语句是提供给与 oracle 兼容的。

show 语句提供相似的信息。查看章节 4.5.6 show 句法。
 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表