This is a discussion on TRIM function and the || concatenation operators within the SQL Server forums, part of the Microsoft SQL Server category; --> Hi, How would I translate these TRIM function and the || concatenation operators into SQL SERVER. Please help. select ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, How would I translate these TRIM function and the || concatenation operators into SQL SERVER. Please help. select prop_type, TRIM(section) || '-' || TRIM(township) || '-' ||TRIM(range), nbhd, region, inspct_cycle, water, sewer_septic, unimproved_acres,improved_acres, total_sqft from parcel, legal_description where legal_description.property_id = [PROPERTYID] and parcel.property_id = [PROPERTYID] and parcel_year = 2008 Thanks, -Long |