簡單SQL語句問題

2022-10-07 00:35:21 字數 4274 閱讀 5734

1樓:匿名使用者

思路是把時間格式轉化為字串,然後擷取字串(1)select left(convert(varchar(20),'2011-10-01 14:46:54.000',120),16)

(2)select substring(convert(varchar(20),'2011-10-01 14:46:54.000',120),12,5)

結果:--------------------2011-10-01 14:46

(1 行受影響)

----------

14:46

(1 行受影響)

2樓:匿名使用者

select convert(varchar(100), getdate(), 0): 05 16 2006 10:57am

select convert(varchar(100), getdate(), 1): 05/16/06

select convert(varchar(100), getdate(), 2): 06.05.16

select convert(varchar(100), getdate(), 3): 16/05/06

select convert(varchar(100), getdate(), 4): 16.05.06

select convert(varchar(100), getdate(), 5): 16-05-06

select convert(varchar(100), getdate(), 6): 16 05 06

select convert(varchar(100), getdate(), 7): 05 16, 06

select convert(varchar(100), getdate(), 8): 10:57:46

select convert(varchar(100), getdate(), 9): 05 16 2006 10:57:46:827am

select convert(varchar(100), getdate(), 10): 05-16-06

select convert(varchar(100), getdate(), 11): 06/05/16

select convert(varchar(100), getdate(), 12): 060516

select convert(varchar(100), getdate(), 13): 16 05 2006 10:57:46:937

select convert(varchar(100), getdate(), 14): 10:57:46:967

select convert(varchar(100), getdate(), 20): 2006-05-16 10:57:47

select convert(varchar(100), getdate(), 21): 2006-05-16 10:57:47.157

select convert(varchar(100), getdate(), 22): 05/16/06 10:57:47 am

select convert(varchar(100), getdate(), 23): 2006-05-16

select convert(varchar(100), getdate(), 24): 10:57:47

select convert(varchar(100), getdate(), 25): 2006-05-16 10:57:47.250

select convert(varchar(100), getdate(), 100): 05 16 2006 10:57am

select convert(varchar(100), getdate(), 101): 05/16/2006

select convert(varchar(100), getdate(), 102): 2006.05.16

select convert(varchar(100), getdate(), 103): 16/05/2006

select convert(varchar(100), getdate(), 104): 16.05.2006

select convert(varchar(100), getdate(), 105): 16-05-2006

select convert(varchar(100), getdate(), 106): 16 05 2006

select convert(varchar(100), getdate(), 107): 05 16, 2006

select convert(varchar(100), getdate(), 108): 10:57:49

select convert(varchar(100), getdate(), 109): 05 16 2006 10:57:49:437am

select convert(varchar(100), getdate(), 110): 05-16-2006

select convert(varchar(100), getdate(), 111): 2006/05/16

select convert(varchar(100), getdate(), 112): 20060516

select convert(varchar(100), getdate(), 113): 16 05 2006 10:57:49:513

select convert(varchar(100), getdate(), 114): 10:57:49:547

select convert(varchar(100), getdate(), 120): 2006-05-16 10:57:49

select convert(varchar(100), getdate(), 121): 2006-05-16 10:57:49.700

select convert(varchar(100), getdate(), 126): 2006-05-16t10:57:49.827

select convert(varchar(100), getdate(), 130): 18 ???? ?????? 1427 10:57:49:907am

select convert(varchar(100), getdate(), 131): 18/04/1427 10:57:49:920am

3樓:匿名使用者

只顯示年月日時分:select convert(varchar(16),getdate(),121)

只顯示時分:select convert(varchar(5),getdate(),8)

4樓:匿名使用者

(1)只顯示年月日時分 select to_date('2011-10-01 14:46:54','yyyy-mm-dd hh24:mi') from dual;

(2)只顯示時分 select to_date('2011-10-01 14:46:54','hh24:mi') from dual;

5樓:隨o天

select to_char(sysdate,'yyyy-mm-dd hh24:mi') from dual;

結果:to_char(sysdate,'yyyy-mm-ddhh2------------------------------2012-07-25 09:57

select to_char(sysdate,'hh24:mi') from dual;

結果:to_char(sysdate,'hh24:mi')--------------------------09:57

6樓:d風流

sql> select sysdate from dual;

sysdate

-----------

2012/7/25 8

sql> select to_char(sysdate,'yyyymmddhh24miss') from dual;

to_char(sysdate,'yyyymmddhh24m

20120725085648

sql> select to_char(sysdate,'hh24mi') from dual;

to_char(sysdate,'hh24mi')

0858

7樓:匿名使用者

select convert(varchar(16),time,120)

select right(convert(varchar(16),time,120),5)

8樓:笨曉孩芳

查出來之後用 string.format()轉

sql語句問題,SQL語句問題

sql語句 select a.姓名,a.計費id,b.單元編號,b.單金額,c,年月 from a,b,c where a.計費id b.計費id and b.單元編號 c.單元編號 說明 這個表結構其實b表是中間關係表,如果真實的資料結構就是這個樣子的話,那麼可能是資料量大並且經常需要查詢每個表,...

SQL查詢資料語句問題,SQL查詢資料語句問題

取n到m行 1.select top m from tablename where id not in select top n id from tablename order by id asc desc 2.select top m into 臨時表 或表變數 from tablename or...

關於SQL語句的問題。多謝,關於SQL語句的一個問題。多謝!

利用b表更新a表,全部覆蓋 update a set a.name b.name,a.age b.age from a,b where a.id b.id update a set a.name b.name,a.age b.age from a a,b b where a.id b.id 表結構設...