Let’s say you have a table called ‘car_make’ and another table called ‘car_model’. There is a one to many relationship between make and model.
You want to bring back a result set of all makes, 1 row per make, but …
We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.
The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ...
Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.
Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.
Let’s say you have a table called ‘car_make’ and another table called ‘car_model’. There is a one to many relationship between make and model.
You want to bring back a result set of all makes, 1 row per make, but …
update a set a.some_column = b.some_column from some_database.dbo.some_table a JOIN some_database.dbo.some_table b ON a.some_column = b.some_column where a.some_column = 'some_value'…
If your sql server is installed with the default collation of case-insensitive, you can accomplish this in sql instead.
You can determine if your installation collation is case-insensitive by running this query:
SELECT SERVERPROPERTY ('Collation') GO
If the result is …
Let’s say you have a column in a table that is comma delimited. The value in the column is ‘APPLE, ORANGE, GRAPE’. You want to break down this string value into individual rows. You may also want to create an …
[UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))] [FileLoadException: Could not load file or assembly 'System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken°3f5f7f11d50a3a' or one of its dependencies. Access is denied.] System.Web.Configuration.RegexWorker..cctor() +0
Go to the Reporting Services Configuration Manager and …
— This SQL reads in a varchar(10) field called work_hours that could have anything in it. It should be numeric represented as decimal.
— The CASE statement will produce either 0.00, or (if it is numeric) whatever is in the …
SELECT * INTO dbo.NewTable FROM dbo.OldTable
Create only a subset of columns:
SELECT column5, column8, column11 INTO dbo.NewTable FROM dbo.OldTable…
As mentioned in my last post (Loop through an existing table), I said that I would expound on its example by reading a column that contains a delimited string. In this case, it will be an address that …
In T-SQL you may want to loop through an existing table and do something. You may want want to use this type of processing in a SSRS report.
Here is an example of walking through a table that simply extracts …
Finding rows on a table is straight forward when filtering on columns, but what if you want to find duplicate data.
Let’s say I have a table that represents parents and children. The key to the table is the parent …