JDBC_CreateDropTable1 |
Create Insert Drop MySQL Table: Image below presents, before
creating a new table:
|
![]() |
Code Snippet:: ( Also see the same, using function );
processing result set |
Table created :: viewing with MySQL WorkBench |
![]() |
Result: |
Code : create table visitor1 ("+" "id int," + "fname varchar(30)," + "lname varchar(30)," + "age int(2))"; INSERT INTO visitor1 values (101,'John', 'Doe', 40); INSERT INTO visitor1 values (102,'Peter', 'Pan', 44); |