sql精確查詢
發布時間: 2023-05-06 02:34:09
㈠ 【推薦】【幫忙】sql like的精確查詢
是不是中間 "+變數+" 不能理解
其實這就是一個連接字元串用 +
比如
select t1.xx_dm from t_xt_ajjg t1 where t1.t1.xx_dm like '%32%' and t1.xxjc < 5 and and t1.xxbm_bj = '1'
你要定義這樣一條sql,肯定是
String sql="上面那條語句";
Java裡面連接字元串這樣表示:"abc"+"123"+"def"
而如果「123」是你已經定義的個變數 num ,那就表示:"abc"+num+"def"
所以sql=「一段」+「另一段」+.......
如果對您有幫助,請記得採納為滿意答案,謝謝!祝您生活愉快!
vaela
㈡ sql查詢語句
SQL查詢就是用的select相關的語句,根據不用的需求,設置關鍵屬性值和查詢區間即可完成一條查詢語句
㈢ sql查詢時間段精確到小時
select to_date(substr('2012-11-19 15:25:10.000',0,16),'yyyy-mm-dd hh24:mi') from al;
select * from 表名 where 開始時間>(select to_date(substr('2012-11-19 15:25:00.000',0,16),'yyyy-mm-dd hh24:mi') from al) and 結束時間<(select to_date(substr('2012-11-22 20:10:00.000',0,16),'yyyy-mm-dd hh24:mi') from al)
熱點內容