当前位置:网站首页>Create a table in a MySQL database through Doc
Create a table in a MySQL database through Doc
2022-08-09 10:43:00 【Zuo Mingshui】
After entering doc:
show databases;
Show all databases
exit;
Launch doc
create database School;
Create a database
use School;
Enter database
create table StudentInfo(
name char(10),
age char(3) );
Create table
insert StudentInfo(name,age)
VALUES('David','18');
insert data
select *from StudentInfo;
query
update StudentInfo set age='12' where name='HAHA';
update data
insert into studentInfo (name,age)values('Jingzhu',20);
Insert data
delete from StudentInfo where age='20';
Delete data
边栏推荐
猜你喜欢
随机推荐
antd表单
力扣(LeetCode)220. 存在重复元素 III(2022.08.08)
1005 继续(3n+1)猜想 (25 分)
BERT预训练模型(Bidirectional Encoder Representations from Transformers)-原理详解
RTP
批量转换经纬度的网页实现方法
Dialogue with the DPO of a multinational consumer brand: How to start with data security compliance?See you on 8.11 Live!
unix环境编程 第十四章 14.4 I/O多路转接
Received your first five-figure salary
虚拟列表key复用问题
OpengGL绘制立方体的三种方法
单元测试2之实际结果检查的引用
编解码(seq2seq)+注意机制(attention) 详细讲解
TELNET协议相关RFC
cnn的输入输出
关于页面初始化
好久没上博客了,好长时间没有进展了
基于STM32设计的环境检测设备
hover内部指定子类的样式
情感分析SowNLP词库









