HeidiSQL中一些简单mysql语句的含义(一)

一、创建数据库

#创建一个数据库,这个是数据库的名字叫java62

create database java62;

#删除数据库java62

drop database java62;

#查看当前mysql里的所有数据库

show databases;

#创建student表,varchar括号里的是字符串的长度

create table student(no int ,name varchar(10),age int);

#查看当前数据库里有哪些表

show tables;

#删除student表

drop table student;

二、增删改查

#向student 表中插入数据

insert into student (no,name,age) values (1001,'张三',20);

#插入两条数据

insert into student (no,name,age) values(1002,'李四',21),(1003,'王五',22);

注:如果不想某个字段重复,可以给它设置主键

#当我要给表中每个字段都写入数据的时候,可以不写字段名

#如果给部分字段赋值,则必须写字段名

insert into student values (1004,'测试',20);

#删除表中所有数据

delete from student;

#在student表中删除no=1004的数据

delete from student where no=1004;

#把所有数据进行修改

update student set age=23 ;

#把 no=1003的一条数据中age改为23

update student set age=23 where no=1003;

#年龄加1

update student set age=age+1 where no=1003;

#把no=1003中name改为测试2,age改为20

update student set name='测试2',age=20 where no=1003;

#查询表中所有数据

select * from student;

#查询name的所有数据

select name from student;

#查询name和age

select name,.age from student;

#查询张三的所有数据

select * from student where name='张三';

#查询age>20的数据

select * from student where age>20;

#查询 name='张三' 或者age=21的数据

select * from student where name='张三' or age=21;

#查询 name='张三' 并且age=21的数据

select * from student where name='张三' and age=21;

相关推荐
PGCCC2 分钟前
【PGCCC】Postgresql 存储设计
数据库·postgresql
PcVue China2 小时前
PcVue + SQL Grid : 释放数据的无限潜力
大数据·服务器·数据库·sql·科技·安全·oracle
魔道不误砍柴功4 小时前
简单叙述 Spring Boot 启动过程
java·数据库·spring boot
锐策4 小时前
〔 MySQL 〕数据库基础
数据库·mysql
远歌已逝5 小时前
管理Oracle实例(二)
数据库·oracle
日月星宿~5 小时前
【MySQL】summary
数据库·mysql
爱吃土豆的程序员5 小时前
在oracle官网下载资源显示400 Bad Request Request Header Or Cookie Too Large 解决办法
java·数据库·oracle·cookie
睿思达DBA_WGX5 小时前
Oracle 11g rac 集群节点的修复过程
数据库·oracle
尘浮生5 小时前
Java项目实战II基于微信小程序的移动学习平台的设计与实现(开发文档+数据库+源码)
java·开发语言·数据库·spring boot·学习·微信小程序·小程序
Leo.yuan6 小时前
数据量大Excel卡顿严重?选对报表工具提高10倍效率
数据库·数据分析·数据可视化·powerbi