Home > Common Problem > body text

How to use convert function?

烟雨青岚
Release: 2020-07-03 15:07:32
Original
14299 people have browsed it

The CONVERT function is used to convert numbers from one measurement system to another. The syntax is "CONVERT(number, from_unit, to_unit)"; the three parameters represent in turn: the value to be converted in "from_units"; the unit of the value; the unit of the result.

How to use convert function?

The CONVERT function is a function that converts numbers from one measurement system to another.

Syntax: CONVERT(number, from_unit, to_unit)

Parameters:

Number needs to be converted in units of from_units numerical value.

From_unit is the unit of the numerical number.

To_unit is the unit of the result.

convert function is used to convert data types

Example:

SELECT CONVERT (VARCHAR(5),12345)
Copy after login

Return: String '12345'

Other usage

With When the three data types of datetime, smalldatetime or sql_variant are used together,

CONVERT and CAST provide similar functions: explicitly converting an expression of a certain data type to another data type.

Syntax

Use CAST:

CAST ( expression AS data_type )
Copy after login

Use CONVERT:

CONVERT (data_type[(length)], expression [, style])
Copy after login

Parameters

expression

is any valid Microsoft SQL Server™ expression. See Expressions for more information.

data_type

Data types provided by the target system, including bigint and Sql_variant. User-defined data types cannot be used. For more information about the available data types, see Data Types.

length

Optional parameter for nchar, nvarchar, char, varchar, binary, or varbinary data type.

style

A date format style, used to convert datetime or smalldatetime data to character data (nchar, nvarchar, char, varchar, nchar, or nvarchar data types); or a string format style, used to convert Convert float, real, money, or smallmoney data to character data (nchar, nvarchar, char, varchar, nchar, or nvarchar data type).

For more related knowledge, please visit PHP Chinese website! !

The above is the detailed content of How to use convert function?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!