欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-01-22 15:30:06
NOW() 函数 NOW 函数返回当前的日期和时间。 提示:如果您在使用 Sql Server 数据库,请使用 getdate() 函数来获得当前的日期时间。 SQL NOW() 语法 SQL NOW() 实例 我们拥有下面这个 "Products" 表: Prod_IdProductNameUni ......

now() 函数

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

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

sql now() 语法

	select now() from table_name

sql now() 实例

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

prod_id productname unit unitprice
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

结果集类似这样:

productname unitprice perdate
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