Add a same number

hboisteau

Registered User.
Local time
Today, 07:10
Joined
Jun 5, 2012
Messages
14
Hi,
I try to add the same number on a query, I have many line and I want add the same number for all of lines at the last colone on my query.
Thanks in advance.
HB
 
Suppose you want to add "999" as the last column in your query:

Code:
Select fld1, fld2,fl3  ,"999" as lastColumn from YourTablename
Where   your_current_where_goes_here
 
Or if you work in the QBE grid,

MyNewNameHere:999
 

Users who are viewing this thread

Back
Top Bottom