Viewing 15 posts - 421 through 435 (of 911 total)
Since an IN () gets converted to ... OR ... OR ..., <<
That is only a current SQL Server thing. Other SQL products (and Microsoft will probably catch up someday)...
August 23, 2019 at 1:35 pm
There are no generic "id" in RDBMS, or generic dates, etc. A table has to have a key. Queries do not modify anything. MONEY is an old vague reserved word...
August 15, 2019 at 9:05 pm
First of all, in SQL a field is part of a column. For example, the year month and day are fields within a date column. The next misconception is that...
August 9, 2019 at 3:10 pm
>> It's funny how you chastise people for using 1950's technology (which was actually awesome and still has seriously good application in the modern world that a lot of today's...
August 8, 2019 at 4:21 pm
It is not just rounding in a single computation. When you have a set of floats, you also get skew in the set as a whole, either away from or...
August 7, 2019 at 3:00 pm
>> Seems like a numeral is the same as a number it just looks different but can be used interchangeably. <<
No, they cannot be used interchangeably. This is the fundamental...
August 6, 2019 at 10:30 pm
>> You waste space and risk ambiguity by storing dashes in a date? <<
When we were creating the ANSI/ISO standards for SQL, the dashes were in the format that we...
August 6, 2019 at 10:23 pm
>> Actually an identifier is numeric (integer) because it just makes no common sense to do otherwise. <<
I'm going to assume that you have seen a Harry Potter movie by...
August 6, 2019 at 10:01 pm
>> I assume, Joe, that you also never write a date with a number in it either, and would write today's date as something like "The sixth of August two...
August 6, 2019 at 9:21 pm
Back when I was learning Fortran we spent about two weeks on floating-point numbers. Let me give you a simple exercise. Create a list of positive and negative random numbers,...
August 6, 2019 at 8:56 pm
Unfortunately what you posted is not a table. A table must have a key and those column(s) he cannot be NULL-able by definition.
CREATE TABLE Foobar
(a INTEGER,
b INTEGER NOT NULL PRIMARY...
August 6, 2019 at 4:46 pm
This is not the purpose of SQL. We are a database language; you really ought to be using a statistical package. You can write out the formula for the normal...
August 6, 2019 at 4:33 pm
>> So, by this logic, are you saying I can't use things like 1st, or 23rd, as those ("not-")numbers don't represent a quantity and I can't apply maths expressions to...
August 6, 2019 at 4:15 pm
No, Jeff, an identifier is by its very nature measured on a nominal scale. It is not an interval scale. It is not a ratio scale. It is not a...
August 5, 2019 at 8:59 pm
> Suppose I want to do a count, grouped by an article and some columns I do not want to group on but I want some examples of the content....
August 5, 2019 at 8:06 pm
Viewing 15 posts - 421 through 435 (of 911 total)