HoustonGuy
Programmer
I have a table with names and sequences that was loaded with some null values.
The table is larger than this example, but this is the erratic Null pattern that can occur.
Example:
Name Sequence
------------------
John 1
Null 2
Null 3
Bill 4
Null 5
Tom 6
Jim 7
I need to remove the nulls and move the names into those spots so that the nulls are at the end.
The Null sequence positions are not predictable.
Name Sequence
------------------
John 1
Bill 2
Tom 3
Jim 4
Null 5
Null 6
Null 7
Any ideas on the best way to do this?
Thanks in advance!
The table is larger than this example, but this is the erratic Null pattern that can occur.
Example:
Name Sequence
------------------
John 1
Null 2
Null 3
Bill 4
Null 5
Tom 6
Jim 7
I need to remove the nulls and move the names into those spots so that the nulls are at the end.
The Null sequence positions are not predictable.
Name Sequence
------------------
John 1
Bill 2
Tom 3
Jim 4
Null 5
Null 6
Null 7
Any ideas on the best way to do this?
Thanks in advance!