0
votes
Combining split date ranges in a SQL query
Select StudentID, min(startdate) as startdate, max(enddate), field1, field2
from tablex
group by StudentID, field1, field2
That would yield you the result assuming the wasn't a gap between …
1
vote
How do you copy a record in a SQL table but swap out the unique id of the new row?
Specify all fields but your ID field.
INSERT INTO MyTable (FIELD2, FIELD3, ..., FIELD529, PreviousId)
SELECT FIELD2, NULL, ..., FIELD529, FIELD1
FROM MyTable
WHERE FIELD1 = @Id;
…
