Jan 2, 2002 #1 jalbao Programmer Joined Nov 27, 2000 Messages 413 Location US is it possible to use the AS function over two fields? looking to do something like this: SELECT (field_1,field_2) AS foo FROM table now when i call the 'foo' variable the values of field_1 and field_2 are returned. tia
is it possible to use the AS function over two fields? looking to do something like this: SELECT (field_1,field_2) AS foo FROM table now when i call the 'foo' variable the values of field_1 and field_2 are returned. tia
Jan 2, 2002 #2 ctarr Programmer Joined Dec 6, 2001 Messages 107 Location US If these are text fields you can do something like Field_1 + ' ' + Field_2 as Foo. Craig Upvote 0 Downvote
Jan 2, 2002 Thread starter #3 jalbao Programmer Joined Nov 27, 2000 Messages 413 Location US thanks a bunch craig Upvote 0 Downvote