Viewing 9 posts - 1 through 9 (of 9 total)
SELECT EQ.EmpDegree, EJS.ProjectName, EPD.HireDate FROM dbo.EmployeeQualification EQ
INNER JOIN dbo.EmployeeJobStatus EJS ON EQ.EmpID=EJS.EmpID LEFT OUTER JOIN dbo.EmployeePersonalDetail EPD...
November 17, 2011 at 4:02 am
Please provide an information wheather there are 3 colums in your sheet or 2 columns .
November 15, 2011 at 1:35 am
create PROCEDURE [dbo].[proc_AdditionalInfotbl] (@jobtbl JobTableType READONLY) AS
Begin
Update additionalinfo
Set RunningUnwind = Case unwindfrnt when 5 then 1 when 6 then 2
when 7 then 3 when 8 then 4 else...
November 3, 2011 at 3:06 am
delete from [table_name] where %%lockres%% in (
select MAX(%%lockres%%) from [table_name]
group by [column_name])
With the help of the above query you will meet your needs.
where [table_name] ...
November 2, 2011 at 3:21 am
Hi , Thanks for sharing so important comcept .
But can't we perform join in this way becz in the output result we are getting colum names like
(C.Componentname or P.projectname...
October 4, 2011 at 5:31 am
Editor: Post removed as it was copied from another source.
October 4, 2011 at 2:01 am
The validation of scripts examines the syntax of each Transact-SQL statement and returns any errors without compiling or executing the statement.
To validate the syntax of your query from the toolbar...
October 4, 2011 at 12:54 am
By uisng the below string and conversion functions you can meets your requirements.
SELECT CONVERT(VARCHAR(30),GETDATE(),121) + ' ' + SUBSTRING( CONVERT(VARCHAR(30),GETDATE(),0),18,1000).
October 4, 2011 at 12:03 am
Viewing 9 posts - 1 through 9 (of 9 total)