查询用户
select user();
查询数据库
show databases;
创建数据库
create database test;
使用数据库
use test;
查看当前使用的数据库
select database();
进入mysql时便选择数据库
mysql -h localhost -u root -p test;
显示当前数据库的表
show tables;
创建表:
create table pet (name varchar(20), owner varchar(20), species varchar(20), sex char(1), birth date, death date);
查看表设计
describe pet;
从文本文件加载数据到表中
load data local infile '文件全路径名' into table pet;
指定换行符,比如在windows下:
load data local infile '文件全路径名' into table pet lines terminated by '\r\n';
注意,文件里面的内容为每一行对应表中的一行,列之间用tab键分隔(即\t)