Search Results

0
votes
2answers
213 views

SCOPE_IDENTITY And Instead of Insert Trigger work-around

OK, I have a table with no natural key, only an integer identity column as it's primary key. I'd like to insert and retrieve the identity value, but also use a trigger to ensure that certain fields …
3
votes

Ordering SQL query by specific field values

Add those values to another table with a numeric column for their rank: Edition Rank NE 1 OE 2 OP 3 Join the tables, and sort on the RANK field. …
2
votes

Why does SQL force me to repeat all non-aggregated fields from my SELECT clause in my GROUP BY clause?

Perhaps we need a shorthand form - call it GroupSelect GroupSelect Field1, Field2, sum(Field3) From SomeTable Where (X = "3") This way, the parser need only throw …