sql複雜查詢

2022-05-25 06:05:14 字數 872 閱讀 8780

1樓:

select t1.時間, t2.地點名

from table1 t1, table2 t2where t1.地點號 = t2.地點號and t1.

時間 between 開始時間 and 截止時間這裡要求開始時間和截止時間都是日期的型別才行,否則和t1時間型別不同,between ... and ...會提示錯誤的。

2樓:匿名使用者

select t1.時間,t2.地點名

from 表一 t1

left join 表二 t2 on t1.地點號=t2.地點號where

t1.時間 between '開始時間' and '結束時間'

開始時間 和 結束時間 格式:

2001-01-01 01:01:01

3樓:

select t1.時間,t2.地點名

from t1,t2

where t1.時間 between --- and ---and t1.地點號=t2.地點號;

4樓:

select 時間,table2. 地點名 form table1 where table1.地點號=table2.地點號 group by 時間

5樓:匿名使用者

select 表1.時間, 表2.地點名 from 表1 left out join 表2 on 表1.地點號=表2.地點號

6樓:樂樂哥

select a.時間,b.地點名 from a表right join b表 on b.地點號=a.地點號where a.時間 between * and *;

複雜sql語句查詢,sql語句查詢

select id,name,isnull select sum 金額 from b表 where id a表.id and bno 20 0 正常消費,isnull select sum 金額 from b表 where id a表.id and bno 30 0 充值,select top 1 ...

SQL查詢問題,SQL查詢問題

你那個 test 表有 設 主鍵 欄位沒有如果沒有 我就不會搞了 因為如果沒設主鍵 select from test 的顯示順序是 按記錄的插入時間 排的 先插入的排在前面 如果設了主鍵 是按主鍵欄位 升序來 排的 如果有設主鍵 假設為 tid 試下這條語句 select from test sel...

sql查詢top關鍵字,sql查詢語句 top n的用法

操作步驟如下 1 首先假設在sql server中有一個基本的資料庫,有6條資料。2 然後我們利用top關鍵字,就能利用top後面跟著數字就能篩選條數。3 此時執行測試,因為top後面的關鍵字為2,所以有2條資料。這樣就完成了操作。結構化查詢語言 structured query language ...