小编Anu*_*and的帖子

为什么我在执行此查询时获得2014年至2015年的记录,直至2016年5月

select t1.InvoiceNumber ,t1.LocalAmount  , t2.LineAmount as discount , t1.CreateDate
from CashOrderTrn t1 
left join DistrubutedDiscountDetails t2 
    on t1.InvoiceNumber =  t2.InvoiceNumber  
    and t1.CreateDate between '20160531' and  '20160701' 
    and t1.InvoiceType ='31'
Run Code Online (Sandbox Code Playgroud)

sql

2
推荐指数
1
解决办法
56
查看次数

如何在 vb.net 中显示日期和时间的毫秒

我希望将日期 (22/03/2016 23:59:59) 格式化为以毫秒为单位的字符串。

dr.GetDateTime(1).ToString("yyyy-MM-dd hh:mm:ss")

  1. .ToString("yyyy-MM-dd")
  2. .ToString("hh':'mm':'ss")

vb.net

2
推荐指数
1
解决办法
1万
查看次数

标签 统计

sql ×1

vb.net ×1