DECLARE @dt DATETIME
為撫寧等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及撫寧網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)、撫寧網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!
DECLARE @dt2 DATETIME
SET @dt = '2008-07-24'
SET @dt2 = DATEADD(day, 1, @dt)
select @dt as dt, @dt2 as dt2
select * from meet_now where meetdate between CONVERT(datetime , @dt, 111 ) and convert(datetime , @dt2, 111 ) order by id
select * from meet_now where DATEDIFF(day, meetdate, @dt) = 0 order by id
1、創(chuàng)建測試表,
create table test_date(id varchar2(20), v_date date);
2、插入測試數(shù)據(jù)
insert into test_date values(1, to_date('2010-9-23 10:10:10','yyyy-mm-dd hh24:mi:ss'));
insert into test_date values(2, to_date('2010-9-24 10:10:10','yyyy-mm-dd hh24:mi:ss'));
insert into test_date values(3, to_date('2010-9-25 10:10:10','yyyy-mm-dd hh24:mi:ss'));
insert into test_date values(4, to_date('2010-9-26 10:10:10','yyyy-mm-dd hh24:mi:ss'));
insert into test_date values(5, to_date('2010-9-27 10:10:10','yyyy-mm-dd hh24:mi:ss'));
commit;
3、查詢表中全量數(shù)據(jù),select t.*, rowid from test_date t;
4、編寫sql,查詢?nèi)掌跒?010-9-23的數(shù)據(jù);
select t.* from test_date t where to_char(v_date,'yyyymmdd') = 20100923;
--根據(jù)當(dāng)前時間查詢上月26號的日期
SELECT CONVERT(varchar(10), CONVERT(varchar(8),dateadd(month,-1,getdate()),23)+'26' , 120)
--根據(jù)當(dāng)前時間查詢本月月25號的日期
SELECT CONVERT(varchar(10), CONVERT(varchar(8),dateadd(month,0,getdate()),23)+'25' , 120)
1、先打開SQL Server數(shù)據(jù)庫并連接。
2、然后找到目標(biāo)數(shù)據(jù)庫,右鍵并點擊“屬性”。
3、在彈出的屬性窗口左側(cè)“選擇頁”中選擇“文件”選項卡。
4、然后在右側(cè)窗體中即可看到相應(yīng)內(nèi)容了:邏輯名稱是數(shù)據(jù)文件及日志文件的文件名,路徑就是其所在位置了。
5、如圖,就是相應(yīng)的.mdf和.ldf文件。