Lets say I want the user to open his own database..how do i select an ENTIRE ROW, and ENTIRE COLUMN?? for example if I had this:
Name Sex Height Age
Bob M 5'11 19
Mary F 6'11 17
Jenny F 4'10 17
Judy F 6'3 32
I want to select the entire first column: Bob M 5'11 19....and I also want to select the entire row: Bob, Mary, Jenny, Judy....and remember, I wont know the name of the rows and columns ahead of time, so i need a universal statement in SQL to do this.. thanks in advance!
Name Sex Height Age
Bob M 5'11 19
Mary F 6'11 17
Jenny F 4'10 17
Judy F 6'3 32
I want to select the entire first column: Bob M 5'11 19....and I also want to select the entire row: Bob, Mary, Jenny, Judy....and remember, I wont know the name of the rows and columns ahead of time, so i need a universal statement in SQL to do this.. thanks in advance!