Search Results

29
votes

Inner join vs Where

If the query optimizer is doing its job right, there should be no difference between those queries. They are just two ways to specify the same desired result. …
5
votes

What’s the SQL query to list all rows that have 2 column sub-rows as duplicates?

With the data you have listed, your query is not possible. The data on rows 5 & 6 is not distinct within itself. Assuming that your table is named 'quux', if you start with something l …
4
votes

Any set of rows that add up to target number

That's a variation of the knapsack problem, and you aren't going to solve it in SQL without a l …
1
vote

In MSSQL change column of type int to type text

Since MS SQL Server (like most databases) doesn't support directly changing the type of an existing column, you'll have to do it in steps. The way I have solved problems like this in the past is ( …