| bio | website | |
|---|---|---|
| location | California | |
| age | 41 | |
| visits | member for | 4 years, 4 months |
| seen | 8 hours ago | |
| stats | profile views | 1,377 |
SQL Fiend.
Puzzle Lover.
Curious about almost everything.
|
8h |
comment |
Javascript: Sort multi dimensional Array based on first arrays sort results Just because you're populating a listbox GUI doesn't mean you have to have a multi-dimensional array. You could very easily rewrite your code to use an array of objects, ala [{col1:'d', col2:'ee'}, {col1:'a', col2:'rr'}, {col1:'b', col2:'mm'}, {col1:'c', col2:'yy'}]. This is in my mind a superior way to store the data and work with it for many reasons, not the least of which that then you can sort it and the related data stays together! It just doesn't make sense to put data into separate arrays, when elements are supposed to be correlated. Don't use nested arrays to store row-type data! |
|
9h |
comment |
SQL Delete and Update didn't delete and update @retailcoder Additionally, if you open a transaction on a connection, you can issue many commands before you roll it back or commit it. So I really was thinking statement-level, not command-level. |
|
9h |
comment |
SQL Delete and Update didn't delete and update @retailcoder Not exactly. A command execution can be turned by the provider into multiple statements, however, there is going to be at least one statement that performs the DML operation, and that statement is what I was thinking about. The provider is free to wrap the whole batch in a transaction if it wants--or not (and then each statement will auto-commit). Some DBMSes do require an explicit COMMIT; but MS Access, and yes, SQL Server, do not--if you don't begin a transaction, then the implicit tran begun by any statement is also auto-committed after executing that statement. |
|
9h |
comment |
SQL Delete and Update didn't delete and update @retailcoder No explicit transaction is needed. Each statement has an implicit transaction. |
|
11h |
comment |
SQL Server: get records that their date is either begining or end of the month It's perfectly valid, of course! I was just curious if you had a particular reason. The ability to include other columns made it seem to me a natural choice to avoid aggregates here. But no biggie! Ironically, my answer uses aggregates, too, (though in a way that lets me still include other columns). :) |
|
12h |
revised |
SQL to Parse a Key-Value String edited tags |
|
12h |
answered | SQL to Parse a Key-Value String |
|
12h |
comment |
SQL to Parse a Key-Value String What version of SQL Server? |
|
16h |
comment |
SELECT a single field by ordered value What version of SQL Server, please? |
|
16h |
comment |
SELECT a single field by ordered value I think the original post had all the information you needed to understand the requirements, especially the part about "since student 2's latest score was above > 80." |
|
16h |
revised |
SELECT a single field by ordered value added 576 characters in body |
|
16h |
answered | SELECT a single field by ordered value |
|
17h |
comment |
Update Set From (T-SQL) Okay... an updated query. How are you validating that the rows in Cust_Site are not changed? Are there any triggers on the table? Is there any process updating the rows automatically in the background? |
|
17h |
revised |
SQL Server: get records that their date is either begining or end of the month added 69 characters in body |
|
17h |
answered | SQL Server: get records that their date is either begining or end of the month |
|
17h |
revised |
SQL Server: get records that their date is either begining or end of the month added 28 characters in body |
|
17h |
comment |
SQL Server: get records that their date is either begining or end of the month I'm curious that you picked aggregates instead of a WHERE clause (e.g., WHERE 1 IN (rn_asc, rn_desc)). That way, no aggregate is needed, and you'd also be able to include other columns from the selected rows. |
|
1d |
revised |
How do I modify this SQL schema to constrain data in tables? added 1532 characters in body |
|
1d |
answered | How do I modify this SQL schema to constrain data in tables? |
|
1d |
comment |
How to use SQL Server views with distinct clause to Link to a detail table? +1. This is how databases should work. The application MUST be coded to add a new HairColour to the HairColour table before trying to use it. Additionally, using the ID is far superior (in my mind): smaller row size, proper normalization. Doing SELECT DISTINCT on the HairColour column would eventually be a huge performance bottleneck, scanning the entire table every time just to come up with a list of the valid values. |