Search Results

-1
votes

Handling the data in an IN clause, with SQL parameters?

In SQL Server 2008, they finally got around to addressing this classic problem by adding a new "table" datatype. Apparently, that lets you pass in an array of values, which can be used in a sub-sel …
0
votes

In how many languages is Null not equal to anything not even Null?

In C#, Nullable<bool> has interesting properties with respect to logical operators, but the equality operator is the same as other types in that language (i.e., ((bool?)null == (bool?)null) = …
0
votes

What is the proper way to ensure a SQL connection is closed when an exception is thrown?

I'm guessing that by "_SqlConnection.State == ConnectionState.Closed" you meant !=. This will certainly work. I think it is more customary to contain the connection object itself inside a …
28
votes

Subqueries vs joins

A "correlated subquery" (i.e., one in which the where condition depends on values obtained from the rows of the containing query) will execute once for each row. A non-correlated subquery (one in w …
1
vote

How do you copy a record in a SQL table but swap out the unique id of the new row?

insert into MyTable (uniqueId, column1, column2, referencedUniqueId) select NewGuid(), // don't know this syntax, sorry column1, column2, uniqueId, from MyTable where uniqueId = @Id …
2
votes

Is there any difference between Group By and Distinct

In that particular query there is no difference. But, of course, if you add any aggregate columns then you'll have to use group by. …
0
votes

Calling stored procedures

Microsoft's new Entity Framework provides just what you're asking for. EF is normally used to create proxy classes for database objects, but one thing a lot of people don't realize is that it also …
2
votes

NOT IN vs NOT EXISTS

In your specific example they are the same, because the optimizer has figured out what you are trying to do is the same in both examples. But it is possible that in non-trivial examples the optimiz …
1
vote

One to One database relation?

I recommend separating them. Not for any database reasons, but for development reasons. When you're coding your player login module, you don't want to think about any of the game informatio …
18
votes

what does “select count(1) from table_name” on any database tables mean

The parameter to the COUNT function is an expression that is to be evaluated for each row. The COUNT function returns the number of rows for which the expression evaluates to a non-null value. ( * …
0
votes

SQL distinct for 2 fields in a database

If you want distinct values from only two fields, plus return other fields with them, then the other fields must have some kind of aggregation on them (sum, min, max, etc.), and the two columns you …
1
vote

What should I consider when selecting a data type for my primary key?

Do not use a floating point numeric type, since floating point numbers cannot be properly compared for equality. …
1
vote

Editing SQL query with Visual Studio 2008

If you create a Database project within your solution in Visual Studio, then you can set up a default database connection for that project. Then any *.sql files that are included in the database pr …
0
votes

Convert an array of integers for use in a SQL “IN” clause

/// <summary> /// Converts an array of integers into a string that may be used in a SQL IN expression. /// </summary> /// <param name="values">The array to convert.</pa …