“JDBC批量插入数据的操作”的版本间的差异
跳到导航
跳到搜索
Jihongchang(讨论 | 贡献) (建立内容为“https://www.bilibili.com/video/BV1eJ411c7rf/?p=32”的新页面) |
Jihongchang(讨论 | 贡献) |
||
| 第1行: | 第1行: | ||
https://www.bilibili.com/video/BV1eJ411c7rf/?p=32 | https://www.bilibili.com/video/BV1eJ411c7rf/?p=32 | ||
| + | |||
| + | 建表:<syntaxhighlight lang="sql"> | ||
| + | create table goods( | ||
| + | id int primary key auto_increment, | ||
| + | name varchar(25) | ||
| + | ); | ||
| + | </syntaxhighlight> | ||
2023年1月3日 (二) 03:25的版本
https://www.bilibili.com/video/BV1eJ411c7rf/?p=32
建表:
create table goods(
id int primary key auto_increment,
name varchar(25)
);