adspace
How to how to convert numeric expression data types using the convert() function??
Answer Posted / Shabnam Parween
You can use the CONVERT() function in MS SQL Server to convert numeric expression data types. The basic syntax is: CONVERT(data_type, expression [, length ] [, style ]). For example, to convert a decimal value to float, you can use: CONVERT(FLOAT, DecimalValue)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
explain different types of backups avaialabe in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration
Is there any performance difference between if exists (select null from table) and if exists (select 1 from table)?
what is the difference between openrowset and openquery?
What is a scheduled job or what is a scheduled task?
What is normalization and what are the advantages of it?
What is the difference between upgrade and migration in sql server?
How do I start sql server 2017?
If you're given a raw data table, how would perform etl (extract, transform, load) with sql to obtain the data in a desired format?
Does view occupy space?
What is a coalesce function?
Why should you use or avoid select * statements?
How to remove duplicate rows from table except one?
If any stored procedure is encrypted, then can we see its definition in activity monitor?
You have a stored procedure, which execute a lengthy batch job. This stored procedure is called from a trigger you do not want to slow the data entry process you do not want trigger to wait for this batch job to finish before it completes itself what you can do to speed up the process?
How to enter binary string literals in ms sql server?