vote up 2 vote down star

I am trying to figure out how to select half the records where an ID is null. I want half because I am going to use that result set to update another ID field. Then I am going to update the rest with another value for that ID field.

So essentially I want to update half the records someFieldID with one number and the rest with another number splitting the update basically between two values for someFieldID the field I want to update.

flag

61% accept rate

3 Answers

vote up 3 vote down check

In oracle you can use the ROWNUM psuedocolumn. I believe in sql server you can use TOP (e.g., select TOP 50 PERCENT * from table)

link|flag
Is there sort of a bottom 50 percent? such as lets say you have 100 records, bottom would be last 50? – coffeeaddict Mar 26 at 17:38
Use the Order by clause – Jhonny D. Cano -Leftware- Mar 26 at 17:49
vote up 1 vote down

You can select by percent:

 SELECT TOP 50 PERCENT *fields* FROM YourTable WHERE ...
link|flag
vote up 2 vote down

update x set id=@value from (select top 50 percent * from table where id is null) x

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.