欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MySQL连接、库查询切换、表查询

程序员文章站 2022-07-12 16:14:24
...
1. 连接MySQL

连接数据库
SQL> mysql -u root -p
Enter password:root


2. 数据库

显示所有数据库
SQL> show databases;

选择数据库
SQL> use test;

显示所有表
SQL> show tables;

显示表中所有列
SQL> show columns from orders;
SQL> describe orders;
相关标签: mysql