管理数据库命令
-
创建数据库test_db
mysql> create database if not exists test_db;
-
删除数据库test_db
mysql> drop database test_db;
-
切换数据库test_db
mysql> use test_db;
-
创建数据表
mysql> create table if not exists `user_tbl`( `id` INT UNSIGNED AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `sex` INT UNSIGNED NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8;
-
查看数据库
mysql> show databases;
-
查看数据库表
mysql> show tables;
-
查看数据库内容
mysql> show columns from test_db;
网友评论