C ling 查詢 in 用法

2022-06-23 12:57:15 字數 806 閱讀 7960

有乙個表  ,單號  a001,  序號 002  ,人員 003 

a001                    a002     a003

20210101001       001      張三

20210101001       002      李四

20210101002       001      王五

20210101002       002      趙六

20210101003       001      張三

20210101003       002      陳七

我需要查 包含張三的所有資料

20210101001       001      張三

20210101001       002      李四

20210101003       001      張三

20210101003       002      陳七

即先查到包含張三的單號

再通過單號查到對應的所有資料  即 select  * from  user where a001 in (select distinct a001 from user where a003="張三")

listuser="查詢的全部資料"

listusername=user.where(t => t.a003.contains("張三")).tolist();//現在是所有包含張三的資料

user= user.where(t =>username.any(f=>f.a001==t.a001)).tolist();// 通過username查到指定的資料

Restrictions查詢用法

hql運算子 qbc運算子 含義 restrictions.eq 等於equal restrictions.ne 不等於not equal restrictions.gt 大於greater than restrictions.ge 大於等於greater than or equal restric...

es查詢 scroll scan用法

需求大概是 需要實時地推送日誌系統的日誌訊息,提供給其他同事查詢使用。當前時間查詢前一分鐘的資料,因為資料量大,考慮用es的scroll scan方法。usr bin env python coding utf 8 查詢es資料 demo 由於es資料存在一定延遲,所以統計一分鐘前的資料.統一的re...

子查詢IN的用法

今天我們要介紹的是子查詢 子查詢大家應該都不陌生啦,在很多地方可以使用到的 首先我們來總結一下 sql子查詢可以用在哪些地方 子查詢的位置 select 子查詢 from 子查詢 where 子查詢 insert table columns 子查詢 delete table from 子查詢 whe...