there's something I can do in Oracle very easily, but can't seem to accomplish in SQL Server:
Remember in Oracle if you want to have a select statement concatenate you just put || between the field names? Well, with SQL Server I tried using the '+' sign and it won't work because it'll add the two dates together...any ideas?
I already have the select statement looking like the following:
"select Date_Resolved (syntax goes here-not the '+') CAST(getdate()as Datetime) from...." what would I put in between "Resolved" and "CAST"?
I know the cast function is needed for the second part of the query..
I would greatly appreciate if somebody could respond and provide any recommendations..
Remember in Oracle if you want to have a select statement concatenate you just put || between the field names? Well, with SQL Server I tried using the '+' sign and it won't work because it'll add the two dates together...any ideas?
I already have the select statement looking like the following:
"select Date_Resolved (syntax goes here-not the '+') CAST(getdate()as Datetime) from...." what would I put in between "Resolved" and "CAST"?
I know the cast function is needed for the second part of the query..
I would greatly appreciate if somebody could respond and provide any recommendations..