“JDBC批量插入数据的操作”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
第1行: 第1行:
 
https://www.bilibili.com/video/BV1eJ411c7rf/?p=32
 
https://www.bilibili.com/video/BV1eJ411c7rf/?p=32
  
建表:<syntaxhighlight lang="sql">
+
=== 建表 ===
 +
<syntaxhighlight lang="sql">
 
create table goods(
 
create table goods(
 
id int primary key auto_increment,
 
id int primary key auto_increment,

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)
);