1,执行MySQL语句,链接到数据库服务器 首先:您必须在您的客户端机器上配置path环境变量
mysql -h localhost -u 用户名 -p 密码2,查看所有库
show databases;3,创建一个库
create database users;或者create database if not exists users;4,删除一个库
drop database 库名;或者drop database if exists 库名;5,查看帮助
's' help6,设置一个本次登录操作的默认库
use 库名;7,创建一个表
1:create table 表名(id int ,age int ,name char(30));2:create table 库名.表名(id int ,age int ,name char(30));3:create table if not exists users(id int ,age int ,name char(30));8,查看表
show tables;9,删除一个表
1:drop table 表名;2:drop table if exists 表名;10,查看表结构
desc 表名;11,表里面插入数据
1:insert into users(id,age,name) values(1,18,'张三');2:insert into 表名 values(1,18,'张三');12,查看表数据
select * from 表名;13,更新表数据
update 表名 set name='李四' where id='1';update 表名 set name='李四',age=19 where id ='1';14,删除表数据
delete from 表名 where id='1';符:图示
新闻热点
疑难解答