cbhelloworld99 / blog-comments

评论存放
0 stars 0 forks source link

MySQL学习之路十二 DML语句 | Wjyの Personal Website #2

Open cbhelloworld99 opened 4 years ago

cbhelloworld99 commented 4 years ago

https://cbhelloworld99.gitee.io/2020/05/12/MySQL12/

DML语句DML:(Data Manipulation Language)数据操纵语言: insert、update、delete 对表中的数据的增删改 数据的插入Insert1234567891011121314151617181920212223242526272829303132/*#一、数据的插入插入单行语法:insert into 表名(字段名1,字段名2,...) values(值1,

cbhelloworld99 commented 4 years ago

1