sql format 函式的用法及簡單例項

2022-09-28 20:12:14 字數 926 閱讀 9150

format() 函式用於對字段的顯示進行格式化。

sql format() 語程式設計客棧法

select format(column_name,format) from table_name;

引數描述

column_name

必需。要格式化的字段。

format

必需。規定格式。

演示資料庫

在本教程中,我們將程式設計客棧使用眾所周知的 northwi程式設計客棧nd 樣本資料庫。

下面是選自 "products" 表的資料:

productid

productname

supplierid

categoryid

unit

price

1chais11

10 boxes x 20 bags182

chang11

程式設計客棧 24 - 12 oz bottles193

aniseed syrup12

12 - 550 ml bottles104

chef anton's cajun seasoning22

48 - 6 oz jars

21.35

5chef anton's gumbo mix22

36 boxes

25

sql format() 例項

下面的 sql 語句從 "products" 表中選取產品名稱以及當天(格式化為 yyyy-mm-dd)的**:

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

from products;

本文標題: sql format()函式的用法及簡單例項

本文位址: /shujuku/mysql/150960.html

typedef的用法及建構函式的用法

主要用法給資料型別新加乙個名字 例一 例二,include typedef int zhangsan 為int再重新多取乙個名字,zhangsan等價於int typedef struct student st 為struct student重新多取乙個名字,叫st int main include...

malloc函式及用法

動態儲存分配 在陣列一章中,曾介紹過陣列的長度是預先定義好的,在整個程式中固定不變。c語言中不允許動態陣列型別。例如 int n scanf d n int a n 用變數表示長度,想對陣列的大小作動態說明,這是錯誤的。但是在實際的程式設計中,往往會發生這種情況,即所需的記憶體空間取決於實際輸入的資...

malloc函式及用法

動態儲存分配 在陣列一章中,曾介紹過陣列的長度是預先定義好的,在整個程式中固定不變。c語言中不允許動態陣列型別。例如 int n scanf d n int a n 用變數表示長度,想對陣列的大小作動態說明,這是錯誤的。但是在實際的程式設計中,往往會發生這種情況,即所需的記憶體空間取決於實際輸入的資...