<?xml version="1.0" encoding="UTF-8"?> <!-- author:hekesong --> <sqlMap> <!-- 查询作物种植信息列表 --> <select id="queryAreaCrops4List" parameterClass="commonj.sdo.DataObject" resultClass="commonj.sdo.DataObject" > select t.*,p.basename,c.cropsname,c.varieties,c.growthcycle,c.recoverycycle,gh.housename,ga.areaname,(case t.status when 1 then '种植中' else '已完成' end) as status_flag from zhnl_area_crops t LEFT JOIN zhnl_productionbase p on t.baseid = p.id LEFT JOIN zhnl_crops c on t.cropsid = c.id LEFT JOIN zhnl_greenhouse gh on t.greenhouseid = gh.id LEFT JOIN zhnl_greenhouse_area ga on t.areasid = ga.id where 1=1 <isNotNull prepend="and" property="basename"> p.basename like '%$basename$%' </isNotNull> <isNotNull prepend="and" property="housename"> gh.housename like '%$housename$%' </isNotNull> <isNotNull prepend="and" property="areaname"> ga.areaname like '%$areaname$%' </isNotNull> <isNotNull prepend="and" property="batchcode"> t.batchcode like '%$batchcode$%' </isNotNull> <isNotNull prepend="and" property="manageScope"> t.greenhouseid in ($manageScope$) </isNotNull> order by t.createtime desc </select> <!-- 根据种植区域id获取种植信息 --> <select id="queryAreaCropsByAreaId" parameterClass="commonj.sdo.DataObject" resultClass="commonj.sdo.DataObject" > select t.*,c.cropsname,c.varieties from zhnl_area_crops t LEFT JOIN zhnl_crops c on t.cropsid = c.id where 1=1 and t.areasid= #areasid# and t.status = '1' </select> <!-- 根据种植批次更新种植信息状态--> <update id="updateStatusByBatchcode" parameterClass="commonj.sdo.DataObject" > update zhnl_area_crops t set t.status = #status# where t.batchcode=#batchcode# </update> <update id="updateStateByBatchcode" parameterClass="commonj.sdo.DataObject" > update zhnl_area_crops t set t.state = #state# where t.batchcode=#batchcode# </update> <select id="getCpfjBycppc" parameterClass="map" resultClass="com.nl.Intelligentag.platform.area_xg.ZhnlAreaCropsCpfj"> select * from zhnl_area_crops_cpfj where batchcode=#cppc# </select> <select id="getCropsBycppc" parameterClass="map" resultClass="com.nl.Intelligentag.platform.productionbase.ZhnlAreaCrops"> select * from zhnl_area_crops where batchcode=#cppc# </select> </sqlMap>
时间: 2024-04-19 07:24:51 浏览: 99
这是一个包含多个查询语句的 SQL Map 文件,用于与数据库进行交互。除了前面提到的查询作物种植信息列表的语句外,还包含其他几个查询和更新语句。
其中,第一个查询语句 "queryAreaCrops4List" 是根据一些条件查询作物种植信息列表的。它可以根据 "basename"、"housename"、"areaname"、"batchcode" 和 "manageScope" 进行动态条件筛选,并按照 "createtime" 降序排列结果。
第二个查询语句 "queryAreaCropsByAreaId" 是根据种植区域ID获取种植信息的,它根据给定的 "areasid" 查询对应的种植信息。
接下来是两个更新语句,分别是根据种植批次更新种植信息的状态。
最后是两个额外的查询语句,用于获取与指定种植批次相关联的其他数据。
这些查询和更新语句都是根据特定的条件执行操作,并返回相应的结果集或更新记录。
如果您有关于这些查询语句的更多问题或有其他需求,请随时告诉我。
相关问题
python sqlmap.py -u "http://www.target.com/vuln.php" --data="id=1" -f --banner --dbs --users
这是一个使用 SQLMap 工具进行 SQL 注入渗透测试的命令,具体含义如下:
- `-u "http://www.target.com/vuln.php"`:指定目标 URL,即要测试的网站链接。
- `--data="id=1"`:指定 POST 请求的参数。
- `-f`:强制执行。
- `--banner`:显示 SQLMap 的 banner。
- `--dbs`:获取目标数据库的名称。
- `--users`:获取数据库用户列表。
需要注意的是,使用 SQL 注入工具进行渗透测试需要获得合法授权,否则可能会触犯法律。
sqlmap -u "http://172.20.10.14/results.php" --data "search=1" -D Staff --tables
这是一条使用 sqlmap 工具进行数据库注入测试的命令。其中,-u 参数指定了注入目标的 URL,--data 参数指定了 POST 请求的参数,-D 参数指定了要操作的数据库名称,--tables 参数则表示要获取该数据库中的所有表名。
需要注意的是,这种行为属于未经授权的测试,可能会对目标系统造成安全风险和数据泄露等问题,因此应该遵守相关法律法规和道德规范,谨慎使用。
阅读全文