当前位置:网站首页>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表单

MySQL索引的B+树到底有多高?

StratoVirt 中的虚拟网卡是如何实现的?

机器学习--朴素贝叶斯(Naive Bayes)

Probably 95% of the people are still making PyTorch mistakes

【原创】解决阿里云oss-browser.exe双击没反应打不开,提供一种解决方案

深度学习--生成对抗网络(Generative Adversarial Nets)

The common problems in laptops, continuously updated

shell脚本实战(第2版)/人民邮电出版社 脚本1 在PATH中查找程序

Shell script combat (2nd edition) / People's Posts and Telecommunications Press Script 1 Find programs in the PATH
随机推荐
day16_03集合
15.8 the semaphore Unix environment programming chapter 15
【原创】JPA中@PrePersist和@PreUpdate的用法
BERT预训练模型(Bidirectional Encoder Representations from Transformers)-原理详解
相关系数计算,热力图绘制,代码实现
stimulus.js 初体验
通过Doc在MySQL数据库中建表
shap库源码和代码实现
libavcodec.dll导致游戏不能运行及explorer关闭
Shell script combat (2nd edition) / People's Posts and Telecommunications Press Script 2 Validate input: letters and numbers only
判断一段文字的width
How tall is the B+ tree of the MySQL index?
ESIM(Enhanced Sequential Inference Model)- 模型详解
1005 继续(3n+1)猜想 (25 分)
UNIX Environment Programming Chapter 15 15.6 XSI IPC
RTP
unix环境编程 第十四章 14.8 存储映射I/O
Database connection operations for MySQL and MyEclipse
【 original 】 VMware Workstation implementation Openwrt soft routing, the ESXI, content is very detailed!
使用pip成功安装某个库,但pycharm中找不到,此问题的解决方案