我現在有倆表,也是對倆表的多個字段模糊查詢,我用concat (a.a1,a.a2,b.b1,b.b2)like '%?%' order by (時間字段)
然後出不來結果也不報錯,我要查詢的關鍵字可能是漢字也可能是字母數字組合,
select * from
(select a.a1,a.a2,a.a3,a.a4,b.b1,b.b2,b.b3,b.b4,b.b5
from a,b where
((a.a3 between "時間1"and "時間2") and( b.b3 between "時間1" and "時間2")) ) c
where concat (c.a1,c.a2,c.b1,c.b2)like '%?%' order by c.a4,c.b4(時間字段排序)
------請原諒我的一無所知
SQL模糊查詢排序問題
drop table if exists t user create table t user id varchar 20 not null,name varchar 20 default null,password varchar 20 default null,primary key id en...
sql查詢遇到的問題
一 與 在pl sql developer中,比如查詢如下sql select decode column name,if1 value1 if2 value2 if3 value1 value2 else from table name 就會出現如下變數對話方塊 要求輸入的名稱為value2的值,...
oracel查詢遇到的sql問題
1 查詢時字串轉換成時間的問題 to date 2018 10 25 19 42 00 yyyy mm dd hh24 mi ss 2 時間相減問題 oracle計算時間差表示式 獲取兩時間的相差豪秒數 select ceil to date 2008 05 02 00 00 00 yyyy mm ...