How to change a table name in SQL Server

Reading Time: 6 minutes Changing a table name in Microsoft SQL Server is a very easy task. Microsoft has a great built-in stored procedure we can use to easily change a table name. The stored procedure is called SP_RENAME. In this very brief tutorial, we’ll discuss how to use the SP_RENAME stored procedure and Continue Reading

How to change a column name in SQL Server: Explained for Beginners

Reading Time: 6 minutes So you need to change a column name in your database. Maybe you messed up the name from the start, or your team decided the name needs to change for business reasons. Either way, it’s got to change. Luckily, the process to change a column name is not too difficult Continue Reading

Top 6 tools you should know for writing AWESOME Select statements

Reading Time: 13 minutes As a database professional, you will be asked to come up with SELECT statements to pull needed information in a meaningful and accurate way. Sometimes you will need to review other SELECT statements written by other people, too. Maybe those queries have a problem which is causing it to pull Continue Reading

Multi Statement Table Valued Function: The Ultimate Guide for Beginners

Reading Time: 12 minutes One of the most powerful tools available to us in Microsoft SQL Server is Multi Statement Table Valued Functions. These are user-defined functions similar to Scalar functions and Inline Table Valued functions. We use functions in SQL Server to run repeatable code very easily. Are you struggling to understand how Continue Reading

Inline Table Valued Function: The Ultimate Guide for Beginners

Reading Time: 9 minutes In this tutorial on SQL Server user defined functions, we will discuss Inline Table Valued Functions. User defined functions are an extremely common thing in Microsoft SQL Server. A solid understanding of user defined functions is crucial for anyone who is in the position of querying and developing SQL Server Continue Reading