html coding in stored procedure
-
Hi Is it possible to put html coding in stored procedure? Like so: select field1, field2 + ' - - ' + field3 as Fields from table thanks Hope this question isnt as silly as it sounds! :)
Deliver yesterday, code today, think tomorrow. "http://www.heuse.com/cphumor.htm"
-
Hi Is it possible to put html coding in stored procedure? Like so: select field1, field2 + ' - - ' + field3 as Fields from table thanks Hope this question isnt as silly as it sounds! :)
Deliver yesterday, code today, think tomorrow. "http://www.heuse.com/cphumor.htm"
Hi, This is not a asp.net question, but if you are trying to concatenate HTML string with database column , yes you can do that
-
Hi, This is not a asp.net question, but if you are trying to concatenate HTML string with database column , yes you can do that
I need to put "" in a stored procedure so that one of the columns is in bold. The reason I am doing it this way is because I am merging 2 columns into 1 and then displaying it in a listbox. Deliver yesterday, code today, think tomorrow. "http://www.heuse.com/cphumor.htm"
-
I need to put "" in a stored procedure so that one of the columns is in bold. The reason I am doing it this way is because I am merging 2 columns into 1 and then displaying it in a listbox. Deliver yesterday, code today, think tomorrow. "http://www.heuse.com/cphumor.htm"
The answer is yes, as long as your database columns are not numeric types - if they are then you need to cast them to varchar.
create table #b1 (nme varchar(10), valuecol in)
select name + 'html codes' + convert(varchar,valuecol)
Bob Ashfield Consultants Ltd
-
Hi Is it possible to put html coding in stored procedure? Like so: select field1, field2 + ' - - ' + field3 as Fields from table thanks Hope this question isnt as silly as it sounds! :)
Deliver yesterday, code today, think tomorrow. "http://www.heuse.com/cphumor.htm"