join tables mysql
In this program we are going to join the two table by using the servlets and the result will be displayed in the browser.
To join the tables firstly it is important to make a connection between the java class and the database. In our program we are using the MySql database. To join the table it is important to have those tables in our database. First of all make a class named ServletJoiningTables. The name of the class should be such that it becomes clear that what the program is going to do. The logic of the program will be written inside the doGet() method which takes two arguments HttpServletRequest and HttpServletResponse. call the method getWriter() of the PrintWriter class, which is responsible for writing the contents on the browser. Our priority is to join the two tables so pass a query in prepareStatement() method which will return the PreparedStatement object.
The result will be displayed to you by the object of the PrintWriter class.
The code of the program is given below:
import java.sql.*;
|
web.xml file for this program:
<?xml version="1.0" encoding="ISO-8859-1"?>
|
Tables emp_details and emp_sal in the database:
mysql> select * from
emp_details; +--------+----------+---------+-----------+----------+-------+---------+-------- -+ | userId | Name | surname | address1 | address2 | town | country | zipcode | +--------+----------+---------+-----------+----------+-------+---------+-------- -+ | 73979 | zulfiqar | Ahmed | Moradabad | Delhi | Okhla | India | 110025 | +--------+----------+---------+-----------+----------+-------+---------+-------- -+ 1 row in set (0.00 sec) mysql> select * from emp_sal; +----------+--------+ | EmpName | salary | +----------+--------+ | zulfiqar | 15000 | | vinod | 12000 | +----------+--------+ 2 rows in set (0.00 sec) |
Here we are getting data from the two tables in the database by combining them.
The output of the program is given below: