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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combine Fields 1

Status
Not open for further replies.

daguas

Technical User
Jul 8, 2004
24
0
0
US
In SQl 2000 I am trying to combine 3 fileds all type float, in a view i.e.( dbo.dbo_charges.charge_id + dbo.dbo_charges.user_id + dbo.dbo_charges.task_id AS new_id ) this adds these values together, I want to concatenate these together in one field (test_id)
 
SELECT CONVERT(VARCHAR(10), Charge_id) + CONVERT(... AS FieldName
FROM dbo.dbo_charges
 
Thanks much, that worked great..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top