刪除指定日期的所有的資料的SQL語句怎麼寫?很急

2023-01-11 09:40:41 字數 2297 閱讀 9336

1樓:匿名使用者

delete from table_name where 日期='2007-11-15'

一樓的語句把16號也刪除了,between and是一個閉區間

二樓的語法不對

2樓:資料庫強者

delete 表 where edate between '2007-11-15' and '2007-11-16'ok

3樓:匿名使用者

delte * from 表 where edate = '2007-11-15'

4樓:無悔網緣

delete 表 where edate='2007-11-15'

sql資料庫表中有一個date time型別的欄位, 請問如何刪除指定日期以前所有的記錄?

5樓:匿名使用者

delete * from table(你的表名)where date time《時間 (時間的格式要正確)

6樓:匿名使用者

delete from table

where date time<2007-4-24 23:59:00

sql語句如何刪除一段時間內的記錄?

sql語句查詢特定時間段的資料怎麼寫

7樓:海天盛筵

sql伺服器:

select*fromtablewhere'2008-7-1'和'2008-12-31'

訪問:62616964757a686964616fe78988e69d8331333433626537

從表中選擇發生日期》#2008-7-1#和發生日期<#2008-12-31#

就是這樣:注意,sqlserver中的日期和訪問有一點不同。

擴充套件資料:

sql查詢日期語句

select*fromshoporderwheredatediff(week,ordtime,getdate()-1)=0//查詢第一年的日期

select*fromshoporder,其中datediff(day,ordtime,getdate()-1)=0//查詢當天的所有資料

select * from a where datediff(d,datetime,getdate()) <=30 //前30天

select * from a where datediff(m, shijian, getdate()) <=1 //上個月

搜尋當天記錄的其他方法:

select*

fromj_gradeshop

其中(gaddtimebetweenconvert(datetime,left(getdate(),10)+'00:00:00.000'))

並轉換(datetime,left(getdate(),10)+'00:00:00.00.000')+1)

由gaddtime指定的訂單

8樓:匿名使用者

select * from 表 where 日期du字zhi段dao

內>='開始日期' and 日期欄位

<='截止日期'

and convert(char(8),日期欄位,108)>='開始時間' and convert(char(8),日期欄位,108)<='截止時間'

例如容:

select * from tb1 where ddate>='2010-11-05' and ddate<='2010-11-15'

and convert(char(8),ddate,108)>='22:30:00' and convert(char(8),ddate,108)<='23:00:00'

9樓:匿名使用者

select * from table_name where convert(char(14),你的

bai時du間字zhi段dao名版稱權,20) between '20100701192000' and '20100731212000'

10樓:

是抄sql server資料庫吧襲

。表table1,欄位d,如下

select * from table1

where year(d)=2010 and month(d)=7 and day(d) between 1 and 31

and (datepart(hour,d)>=22 or datepart(hour,d)<6)

oracle刪除使用者下的表的sql語句是什麼啊

drop user username cascade這個是刪除使用者的我要的是刪除一個使用者下的所有表,但不刪除使用者 在oracle中如何刪除一個使用者下所有該使用者所建的表?刪除使用者的語法是 drop user user name 如果要刪除該使用者模式的包含物件 比如表 就要在要刪除得使用者...

如何用sql語句將資訊插入到指定記錄的某段

將資訊插入到指定記錄的某一欄位,這個就是對資料庫中已有的資料進行更新。使用update 語句。標準語法 update 表名 set 欄位名 要更改的資訊,欄位名2 要更改的資訊 where 如果指定記錄,即配合 where 子句 例 update table set a abc where a a ...

vb中用sql的insert語句向資料庫新增新資料,但是總是

給出insert into的用法,增加資料 insert into table name column1,column2,values value1,value2,說明 1.若沒有指定column 系統則會按 內的欄位順序填入資料。2.欄位的資料形態和所填入的資料必須吻合。3.table name ...