摘要:
//MySql数据库的分页查询sql SELECT * from 表名 LIMIT 1,2 //Oracle数据库的分页查询sql语句 select * from ( select t.*, rownum RN from 表名 ) where RN > 0 and RN <= 15 阅读全文
摘要:
//使用concat进行字符串拼接前缀% 和后缀%,实现模糊查询,会解决sqL注入的问题 like CONCAT('%',#{stockCode},'%') 阅读全文
摘要:
CASE p.sharesNature WHEN 0 THEN '限售' WHEN 1 THEN '流通' ELSE '未知' END 阅读全文
摘要:
package com.yt.project.stockpledge.schedule; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.ste... 阅读全文
摘要:
package com.ytgf.mobilestock.controller; public class Test { public static void main(String[] args) { // 首先是定义字符串的长度 String str="008"; //将字符串转换为int类型 int s=I... 阅读全文