Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Language question

Status
Not open for further replies.

sbix

IS-IT--Management
Nov 19, 2003
493
CA
In Oracle PL/SQL I can chain fields of a table in a unique one i.e.: Select field_1||field_2||field_3 from table; will return some rows of only one big field.
Is it possible to do in JET SQL? Is it possible to use something like that in an Access Query?
 
In the QBE, somthing like this:

[tt] Select field_1 & field_2 & field_3 from table[/tt]

If you need some spaces etc between then field_1 & " " & field_2 in the QBE, in code single quotes in stead of double quotes.

Roy-Vidar
 
They are two concatenation operator with Access:
& concatenate all non null terms
+ return null if either one term is null

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top