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

sql format()函数的用法及简单实例

程序员文章站 2024-02-20 22:59:40
format() 函数用于对字段的显示进行格式化。 sql format() 语法 select format(column_name,format) from...

format() 函数用于对字段的显示进行格式化。

sql format() 语法

select format(column_name,format) from table_name; 

参数 描述
column_name 必需。要格式化的字段。
format 必需。规定格式。

 演示数据库

在本教程中,我们将使用众所周知的 northwind 样本数据库。

下面是选自 "products" 表的数据:

productid productname supplierid categoryid unit price
1 chais 1 1 10 boxes x 20 bags 18
2 chang 1 1 24 - 12 oz bottles 19
3 aniseed syrup 1 2 12 - 550 ml bottles 10
4 chef anton's cajun seasoning 2 2 48 - 6 oz jars 21.35
5 chef anton's gumbo mix 2 2 36 boxes 25

 sql format() 实例

下面的 sql 语句从 "products" 表中选取产品名称以及当天(格式化为 yyyy-mm-dd)的价格:

select productname, price, format(now(),'yyyy-mm-dd') as perdate 
from products; 

以上这篇sql format()函数的用法及简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。