|
tsaliki
Starting Member
India
11 Posts |
Posted - 10/05/2012 : 00:39:56
|
i have a table like below:
create table testjob
(
jobid int, jobname varchar(100), time float, name varchar(50) )
insert into testjob values ( 1001,'java work',4.5,'arjun') insert into testjob values ( 1005,'sql work',10,'arjun') insert into testjob values ( 1010,'.net work',7.5,'arjun') insert into testjob values ( 1040,'java work',5.5,'ravi') insert into testjob values ( 1023,'php work',2.5,'arjun') insert into testjob values ( 1027,'.net work',3.5,'ravi')
i want a procedure so that my output is as below in the html format like below that is in sql
we will write select * from testjob but i want the output to be displayed in html using stored procedure or so
Name Jobname Time
arjun Javawork 4.5 arjun sql work 10 arjun .net work 7.5 ravi java work 5.5 arjun php work 2.5 ravi .net work 3.5 |
|
|
jackv
Flowing Fount of Yak Knowledge
United Kingdom
1773 Posts |
Posted - 10/05/2012 : 01:34:15
|
CREATE PROCEDURE AS select [name],jobname,time FROM testjob
This will create the store procedure. Pass the results into a recordset object at the application layer and format as required
Jack Vamvas -------------------- http://www.sqlserver-dba.com |
 |
|