Coding By Yakub
703 subscribers
273 photos
97 files
24 links
This channel for online classes videos for java , jdbc, hibernate, spring and spring boot and react js. With handson
Download Telegram
Gai Java folks if any one want join spring boot class . Through online. Please join on 9pm to 10 pm . Fee is 7000
Spring boot rest+micro service+with tools
content://com.whatsapp.w4b.provider.media/item/48007368-2978-40f7-a05d-6de5b1c7504b
content://media/external_primary/downloads/1000038734
Hai
🙏3
👍6
<html>
<head>
<title>Student Details</title>
</head>
<body>
<hr>
<table border="1">
<caption>Student Information</caption>
<tr>
<th>SID</th>
<th>NAME</th>
<th>COURSE_NAME</th>
<th>AGE</th>
<th>MOBILE NUMBER</th>
</tr>

<tr>
<td>111</td>
<td>sai</td>
<td>Java</td>
<td>21</td>
<td>987654321</td>
</tr>
<tr>
<td>222</td>
<td>ram</td>
<td>HTML</td>
<td>22</td>
<td>987654399</td>
</tr>

<tr>
<td>333</td>
<td>Dilip</td>
<td>.Net</td>
<td>23</td>
<td>888999661</td>
</tr>
<tr>
<td>444</td>
<td>John</td>
<td>Spring</td>
<td>23</td>
<td>9999999991</td>
</tr>
<tr>
<td>555</td>
<td>RaviTeja</td>
<td>Spring Boot</td>
<td>25</td>
<td>999996991</td>
</tr>
<tr>
<td>666</td>
<td>RaviTeja</td>
<td>Spring Boot</td>
<td>25</td>
<td>999996991</td>
</tr>
<tr>
<td>777</td>
<td>RaviTeja</td>
<td>Spring Boot</td>
<td>25</td>
<td>999996991</td>
</tr>

</table>
<hr>
</body>
</html>
👍4
SQL> CREATE TABLE product (
num INT, name VARCHAR2(20),
price INT, year INT);
==========================
Insert records:
INSERT INTO product VALUES (1, 'mouse', 15, 2020);
INSERT INTO product VALUES (2, 'keyboard', 30, 2021);
INSERT INTO product VALUES (3, 'monitor', 200, 2019);
INSERT INTO product VALUES (4, 'speakers', 50, 2022);
INSERT INTO product VALUES (5, 'printer', 100, 2018);
INSERT INTO product VALUES (6, 'mouse', 12, 2021);
INSERT INTO product VALUES (7, 'keyboard', 35, 2020);
INSERT INTO product VALUES (8, 'monitor', 180, 2023);
INSERT INTO product VALUES (9, 'speakers', 45, 2017);
INSERT INTO product VALUES (10, 'printer', 110, 2019);
INSERT INTO product VALUES (11, 'mouse', 14, 2022);
INSERT INTO product VALUES (12, 'keyboard', 28, 2018);
INSERT INTO product VALUES (13, 'monitor', 220, 2021);
INSERT INTO product VALUES (14, 'speakers', 55, 2020);
INSERT INTO product VALUES (15, 'printer', 105, 2016);
INSERT INTO product VALUES (16, 'mouse', 18, 2019);
INSERT INTO product VALUES (17, 'keyboard', 32, 2023);
INSERT INTO product VALUES (18, 'monitor', 190, 2015);
INSERT INTO product VALUES (19, 'speakers', 60, 2022);
INSERT INTO product VALUES (20, 'printer', 95, 2020);
👍1