File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ const [rows] = await connection .execute (`
2
+ SELECT
3
+ ownership AS landOwnershipType,
4
+ well_irrigation AS hasWell,
5
+ area_irrigated AS areaIrrigated,
6
+ irrigated_lands AS irrigatedLandCombined,
7
+ patta AS pattaNumber,
8
+ total_area AS totalArea,
9
+ taluk,
10
+ firka,
11
+ revenue AS revenueVillage,
12
+ crop_season AS cropSeasonCombined,
13
+ livestocks AS livestockCombined
14
+ FROM farm_pond_details
15
+ WHERE id = ?
16
+ ` , [2 ]);
17
+
18
+
19
+
20
+
21
+
22
+ const [rows] = await connection .execute (`
23
+ SELECT
24
+ ownership AS landOwnershipType,
25
+ well_irrigation AS hasWell,
26
+ area_irrigated AS areaIrrigated,
27
+ irrigated_lands AS irrigatedLandCombined,
28
+ patta AS pattaNumber,
29
+ total_area AS totalArea,
30
+ taluk,
31
+ firka,
32
+ revenue AS revenueVillage,
33
+ crop_season AS cropSeasonCombined,
34
+ livestocks AS livestockCombined
35
+ FROM plantation_details
36
+ WHERE id = ?
37
+ ` , [3 ]);
You can’t perform that action at this time.
0 commit comments