Hey there,
I'm working with a table that has about 200 columns (seems like I am ALWAYS doing that).
I'd like to do something quick that would allow me to refer to columns in "groups" and have my select return just the columns that pertain to that group.
For instance, if I wanted to write a select statement that brought back all of the possible address related fields from my table, instead of saying:
SELECT Address1Street, Address1City, Address1State, Address1ZIP, Address2Street, Address2City, Address2Zip, Address3Street etc etc.
I would just say something like
SELECT @AddressFields FROM MyTable and it would grab all the address related fields.
I'm thinking like a lookup table of fields and groups and an SP or something?
No big deal - I probably just spent more time thinking about it and writing this question than it's worth. Just wondering if anyone had a cool trick they've used to make that easier.
Thanks!