当前位置:网站首页>mysql黑窗口~建库建表
mysql黑窗口~建库建表
2022-07-31 15:14:00 【生活可真难啊】
// 创建一个数据库
create database 表名;
例如 create database drop_testdb;
//展示所有数据
show databases;
如下:
// 删除数据库
drop database <数据库名>;
// 查看表中的数据
select * from `test`;
// 展示所选择的字段内容
SELECT `id`, `name` FROM `test` WHERE 1
// 创建一个数据库
create database drop_database;
// 使用数据库
use drop_database;
// 展示数据库里的所有表
show tables;
// if exists 判断数据库是否存在,不存在也不产生错误
drop database if exists drop_database;
创建数据表
create table user(
id int primary key auto_increment,
username varchar(20) not null default ' ',
passwd char(32) not null default ' ',
email varchar(50) not null default ' ',
gender char(1) not null default ' ',
age tinyint unsigned not null default 0
)engine myisam charset utf8
// 删除数据表
drop table table_name;
// 往test表添加数据
INSERT INTO `test`(`id`, `name`) VALUES ('1','李四');
// 查看表中的数据
select * from `test`;
// 修改表中的数据
UPDATE `test` SET `id`='这是修改后的id',`name`='这是修改后的内容' WHERE `id`=1;
// 删除表中的数据
DELETE FROM `test` WHERE 1
// 在一个表里面增加一个字段
alter table user add email varchar(50) not null default ' ' after passwd;
// 设置显示字符集
set names gbk;
边栏推荐
- 使用 PyTorch 检测眼部疾病
- 「秋招系列」MySQL面试核心25问(附答案)
- NC | 斯坦福申小涛等开发数据可重复分析计算框架TidyMass
- org.apache.jasperException(could not initialize class org)
- svn安装及使用(身体功能手册)
- Deployment应用生命周期与Pod健康检查
- LeetCode二叉树系列——110.平衡二叉树
- [MySQL] Mysql paradigm and the role of foreign keys
- Trigonometric identity transformation formula
- Ubantu专题4:xshell、xftp连接接虚拟机以及设置xshell复制粘贴快捷键
猜你喜欢
随机推荐
MANIFEST.MF文件(PDB文件)
R语言计算时间序列数据的移动平均值(滚动平均值、例如5日均线、10日均线等):使用zoo包中的rollmean函数计算k个周期移动平均值
微信聊天记录中搜索红包
R语言ggstatsplot包ggbarstats函数可视化条形图、并添加假设检验结果(包含样本数、统计量、效应大小及其置信区间、显著性、组间两两比较、贝叶斯假设)、检验结果报告符合APA标准
Getting started with UnityShader (1) - GPU and Shader
Deployment应用生命周期与Pod健康检查
学习笔记12--路径-速度分解法之局部路径搜索
网银被盗?这篇文章告诉你如何安全使用网银
Unity中实现点选RenderTexture中的3D模型
WPF项目--控件入门基础用法,必知必会XAML
安装Xshell并使用其进行Ymodem协议的串口传输
Emmet 语法
使用 PyTorch 检测眼部疾病
如何进行需求分析评审
Ubantu project 4: xshell, XFTP connected the virtual machine and set xshell copy and paste the shortcut
The meaning of node_exporter performance monitoring information collection in Prometheus
[CUDA study notes] First acquaintance with CUDA
SQL、HQL、JPQL 到底有什么区别
mongo进入报错
ASP.NET Core 产生连续 Guid