Forum Replies Created

Viewing 15 posts - 1 through 15 (of 27 total)

  • Reply To: The Order of Operations

    I think windows calculator gets it right if you use the +/- button for the negative numbers:

    -100 รท -100 ร— 10 = 10

    If you key in - before the 100s...

  • Reply To: The Order of Operations

    For many years at least in the UK the school system has been teaching "BODMAS" as the way to solve potentially ambiguous equations. The BBC educational assistance page about it:...

  • Reply To: In Praise of User-Defined Datatypes

    I once thought they were a good idea too...

    until I needed to revise the underlying type definitions for a set of user defined data types in multi terrabyte production databases...

  • RE: Heat Maps

    It is not a "heat map" because that implicitly required clustering - reducing the data values, which is why the Cran R project provides the pheatmap function.
    The image...

  • RE: Vardecimal

    I agree - it is the very first statement of the explanation!

  • RE: Create Procedure

    These questions are starting to get ridiculous - options 1,2 and 3 shouldn't be used because they don't work, or may cause a minor performance hit or clash with existing...

  • RE: More wildcard searches

    The other potential "trap" is that depending on the collation settings (which were not mentioned) the LIKE operator can be case sensitive so the sentences starting with "Coffee" wouldn't match;...

  • RE: Casting

    I must be missing the explanation here?

    This page https://msdn.microsoft.com/en-us/library/ms191530.aspx says that implicit conversion from char, varchar, nchar, nvarchar is supported to decimal, numeric, float, real, bigint, int, smallint,...

  • RE: Counting Classes

    ๐Ÿ™‚

  • RE: Counting Classes

    Because there is a Column called ClassSubject - a count of Classes in each Room (and Building) is a completely different question to a count of Subjects.

    They are different types...

  • RE: Counting Classes

    I agree; poor question with no correct answer. How can a count of rows in a table that lists Classes return a "count of subjects in each"?

    A Subject...

  • RE: Round

    This is a serious fault in a basic function in SQL Server; my conclusion is based on the behaviour on SQL Server of:

    select ROUND(1.999, 2);

    2.000

    And Oracle 10g:

    SELECT ROUND(0.999,2) from dual;

    1

    And...

  • RE: Dependency between tables

    I agree completely with Toreador on this - the query returns the two table names and the name of the foreign key constraint between them.

    As the first two answers seem...

  • RE: The CTE Problem

    I beg to differ - practical experience says that the column list is a valid place to alias CTE columns, no matter what the documentation may say.

    I don't have the...

  • RE: The CTE Problem

    I got it right so I'm not complaining, but technically the alias can be defined by providing a column list as per answer 4, specifically:

    WITH MonthlyProductSales (YearMonth, ProductID, SumLineTotal) AS

    So...

Viewing 15 posts - 1 through 15 (of 27 total)