码迷,mamicode.com
首页 > 数据库 > 详细

松软科技web课堂:SQLServer之NOW() 函数

时间:2019-09-27 10:23:02      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:div   class   函数   使用   日期时间   unit   now()   返回   price   

NOW() 函数

NOW 函数返回当前的日期和时间。

提示:如果您在使用 Sql Server 数据库,请使用 getdate() 函数来获得当前的日期时间。

SQL NOW() 语法

	SELECT NOW() FROM table_name

SQL NOW() 实例

我们拥有下面这个 "Products" 表:

Prod_IdProductNameUnitUnitPrice
1 gold 1000 g 32.35
2 silver 1000 g 11.56
3 copper 1000 g 6.85

现在,我们希望显示当天的日期所对应的名称和价格。

我们使用如下 SQL 语句:

	SELECT ProductName, UnitPrice, Now() as PerDate FROM Products

结果集类似这样:

ProductNameUnitPricePerDate
gold 32.35 12/29/2008 11:36:05 AM
silver 11.56 12/29/2008 11:36:05 AM
copper 6.85 12/29/2008 11:36:05 AM

松软科技web课堂:SQLServer之NOW() 函数

标签:div   class   函数   使用   日期时间   unit   now()   返回   price   

原文地址:https://www.cnblogs.com/sysoft/p/11595831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!