本文主要是介绍mysql常用指令,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
原文链接:这里
1. 登录
mysql -u root -p # 进入MySQL bin目录后执行,回车后输入密码连接。
# 常用参数:-h 服务器地址,-u 用户名,-p 密码,-P 端口
2.数据库操作相关
show databases; #展示当前所有数据库
use test; #使用某个数据库当前选中的是test
status; #选择当前选中的数据库的状态信息
create database myapp #创建一个新数据库(名字为myapp)
drop database myapp; # 删除数据库(名字为myapp)
CREATE DATABASE `myapp` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; # 创建todo数据库,并指定字符集
alter database character set utf8; # 修改数据库字符集
3.数据表相关操作
create table <表名> (<字段名1> <类型1> [,..<字段名n> <类型n>]);
create table user(
id int(8)
); #创建一个名字为user的表,里面的里面有一个名字为id的字段。
show tables; # 显示所有表
describe tablename; # 表结构详细描述
create table newtable like oldtable; # 复制表结构
insert into newtable select * from oldtable; #复制表数据
rename table tablelname to new_tablelname # 重命名表,
drop table tablename; # 删除表
这篇关于mysql常用指令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!