If the field is already a string, this will work
SELECT RIGHT('000'+ISNULL(field,''),3)
If you want nulls to show as ‘000’
It might be an integer — then you would want
SELECT RIGHT('000'+CAST(field AS VARCHAR(3)),3)
As required by the question this answer only works if the length <= 3, if you want something larger you need to change the string constant and the two integer constants to the width needed. eg
'0000' and VARCHAR(4)),4
Related Posts:
- LEFT JOIN vs. LEFT OUTER JOIN in SQL Server
- LEFT JOIN vs. LEFT OUTER JOIN in SQL Server
- SQL Server: Difference between PARTITION BY and GROUP BY
- Function to Calculate Median in SQL Server
- Function to Calculate Median in SQL Server
- What is the use of GO in SQL Server Management Studio & Transact SQL?
- Sql Server string to date conversion
- Check if table exists in SQL Server
- SQL Server String or binary data would be truncated
- Format number as percent in MS SQL Server
- How to truncate string using SQL server
- Selecting COUNT(*) with DISTINCT
- What is a stored procedure?
- Inserting multiple rows in a single SQL query? [duplicate]
- How to drop a table if it exists?
- Self Join to get employee manager name
- How do I UPDATE from a SELECT in SQL Server?
- SQL query to select dates between two dates
- When should I use CROSS APPLY over INNER JOIN?
- How can I do an UPDATE statement with JOIN in SQL Server?
- T-SQL split string
- How do I escape a single quote in SQL Server?
- T-SQL split string based on delimiter
- How do I perform an IF…THEN in an SQL SELECT?
- How do I escape a single quote in SQL Server?
- IDENTITY_INSERT is set to OFF – How to turn it ON?
- Each GROUP BY expression must contain at least one column that is not an outer reference
- SQL Server : Arithmetic overflow error converting expression to data type int
- How to calculate percentage with a SQL statement
- Column name or number of supplied values does not match table definition
- SQL Server FOR EACH Loop
- What is the meaning of the prefix N in T-SQL statements and when should I use it?
- Delete all the records
- Query error with ambiguous column name in SQL
- Each GROUP BY expression must contain at least one column that is not an outer reference
- In SQL Server, what does “SET ANSI_NULLS ON” mean?
- Operand type clash: int is incompatible with date + The INSERT statement conflicted with the FOREIGN KEY constraint
- Keeping it simple and how to do multiple CTE in a query
- Why use a READ UNCOMMITTED isolation level?
- Find all tables containing column with specified name – MS SQL Server
- DateTime2 vs DateTime in SQL Server
- How to group by month from Date field using sql
- SQL – The conversion of a varchar data type to a datetime data type resulted in an out-of-range value
- How can I get column names from a table in SQL Server?
- Is there a combination of “LIKE” and “IN” in SQL?
- How to get a date in YYYY-MM-DD format from a TSQL datetime field?
- How to parse XML data in SQL server table
- What is the equivalent of ‘describe table’ in SQL Server?
- Error converting data type varchar to float
- What is the Oracle equivalent of SQL Server’s IsNull() function?
- MS SQL compare dates?
- MS SQL compare dates?
- I want to use CASE statement to update some records in sql server 2005
- What represents a double in sql server?
- Get size of all tables in database
- Using RegEx in SQL Server
- Conversion failed when converting the varchar value ‘simple, ‘ to data type int
- Must declare the scalar variable
- SELECT DISTINCT on one column
- Exclude a column using SELECT * [except columnA] FROM tableA?
- Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 4 (Year)
- TSQL PIVOT MULTIPLE COLUMNS
- How to format a numeric column as phone number in SQL
- SQL “select where not in subquery” returns no results
- Equivalent of Oracle’s RowID in SQL Server
- How do I format a number with commas in T-SQL?
- SQL: IF clause within WHERE clause
- Is it possible to specify condition in Count()?
- SQL Server dynamic PIVOT query?
- How to write a foreach in SQL Server?
- Error converting data type varchar
- Temporary table in SQL server causing ‘ There is already an object named’ error
- I want to use CASE statement to update some records in sql server 2005
- T-SQL: Selecting rows to delete via joins
- To add server using sp_addlinkedserver
- How to calculate age (in years) based on Date of Birth and getDate()
- ORDER BY items must appear in the select list if SELECT DISTINCT is specified
- Text was truncated or one or more characters had no match in the target code page including the primary key in an unpivot
- How can I group by date time column without taking time into consideration
- Comma separated results in SQL
- “select * into table” Will it work for inserting data into existing table
- SUM OVER PARTITION BY
- Update query using Subquery in Sql Server
- Varchar invalid for Sum operator
- Conversion failed when converting date and/or time from character string while inserting datetime
- error, string or binary data would be truncated when trying to insert
- The SQL OVER() clause – when and why is it useful?
- SQL Server Management Studio, how to get execution time down to milliseconds
- How to join two tables by multiple columns in SQL?
- SQL Server IF NOT EXISTS Usage?
- How to join two tables by multiple columns in SQL?
- Search all tables, all columns for a specific value SQL Server [duplicate]
- Round *UP* to the nearest 100 in SQL Server
- Regex pattern inside SQL Replace function?
- How do I fix the error ‘Named Pipes Provider, error 40 – Could not open a connection to’ SQL Server’?
- How to execute a stored procedure within C# program
- Cannot create an instance of OLE DB provider Microsoft.Jet.OLEDB.4.0 for linked server null
- Call a stored procedure with parameter in c#
- Inner Joining three tables
- SQL- Ignore case while searching for a string