Hello Sir,
I have 2 tables in my database named: table1 and table2
columns in table1 are:Id,date,day,name
columns in table2 are:Id ,date,day
Here i want to check whether the date of table1 also exists into table2 if yes fetch the date.
my table1 is:
<html>
<head>
<style>
table,th,tr,td{
border:1px solid;
}
</style>
</head>
<body>
<div>
<table>
<tr><th>Date1</th>
<th>Date2</th>
<th>Date3</th>
<th>Date4</th>
</tr>
<tr>
<td>12/04/2019</td>
<td>13/04/2019</td>
<td>14/04/2019</td>
<td>15/04/2019</td>
</table>
</div>
</body>
</html>
and table2 is:
<html>
<head>
<style>
table,th,tr,td{
border:1px solid;
}
</style>
</head>
<body>
<div>
<table>
<tr><th>Date</th></tr>
<tr><td>12/04/2019</td>
</table>
</div>
</body>
</html>
Thank you