Viewing 15 posts - 226 through 240 (of 911 total)
To keep the record straight, the ANSI/ISO SQL standards allow only the ISO – 8601 "YYYY-MM-DD" format for dates. The. The reasons we pick this one were:
1) it's not ambiguous,...
October 13, 2020 at 8:19 pm
What you posted is by definition not a table at all! The table must have a key. You cannot embed spaces in the data element name in any of the...
October 13, 2020 at 7:57 pm
This is a common misconception about the three valued logic and SQL. We have three logical values: true, false and unknown. The search condition used in WHERE or ON clauses...
October 12, 2020 at 6:28 pm
>> I have a customer table and than a customer group group table which is basically grouping customers <<
Why did you fail to post any DDL? Why is the sample...
October 12, 2020 at 3:01 pm
>> ]This is how the data is stored in the system. There is no start or end date in the system. Any actual day off is recorded in a row...
October 11, 2020 at 1:18 am
Incentive trying to mimic procedural (recursive) code in SQL, I would've used a nested set model. You can Google it and see that it's very set oriented so it works...
October 11, 2020 at 1:07 am
http://www2.cs.arizona.edu/~rts/publications.html
This also has his other books on temporal SQL, etc.
October 11, 2020 at 1:04 am
You don't know how to do a data model for temporal data. Please get a copy of Rick Snodgrass's book from the University of Arizona on temporal queries in SQL....
October 9, 2020 at 7:44 pm
I strongly agree with your decision to clean the data before it goes to the database. However, we never designed SQL to be a string handling language. If you can...
October 7, 2020 at 3:50 pm
Have you ever considered normalizing your table? Or following ISO 11179 naming rules? What you did post is a mess. First of all, a table has to have a key,...
October 6, 2020 at 3:29 pm
>> I want to find runs of at least three 1s, and return the result below. The 0s would be any test_values that are not 1. <<
This is been a...
October 2, 2020 at 6:19 pm
>> failed to convert the below scalar function to table valued function, i tried many times and always got error <<
Actually, your problem is that you're not writing SQL yet!...
September 30, 2020 at 7:10 pm
>> I have a table, around 320 fields... <<
You might want to read the SQL standards, so you'd know what the term "field" means in this language. It is a...
September 30, 2020 at 5:45 pm
DATE and TIME are available data types that can be combined into the newer DATETIME2(n) data type. Just use the CAST() function and simple math. The use of an integer...
September 30, 2020 at 4:30 pm
>> I need to generate a sequence AlphaNumeric characters based on a certain condition. <<
You talk about a sequence, but that's how filesystems work. Perhaps you meant to think about...
September 30, 2020 at 4:20 pm
Viewing 15 posts - 226 through 240 (of 911 total)