We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b8933 commit 2d07311Copy full SHA for 2d07311
src/main/java/com/example/CustomForEachSink.java
@@ -12,9 +12,9 @@
12
13
Prepare the mysql database
14
1. create database
15
-create database iot;
+mysql> create database iot;
16
2. Create a table inside iot database
17
-create table tags(tag varchar(255) primary key not null, count bigint not null);
+mysql> create table tags(tag varchar(255) primary key not null, count bigint not null);
18
19
Add mysql jdbc as maven dependency to the project.
20
0 commit comments