MySql 建表

MySql装好以后,进入命令行,开始建表需要先创建一个database.
开始使用:
create database mybase;
use mybase;
create table user_info(user_id char(10),user_name char(25),password char(10));


mysql中如何找到系统表?
show tables from your_db;
use mysql;//mysql是MySql的系统表的database
show tables;

原文地址:https://www.cnblogs.com/marryZhan/p/785804.html