Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #37.0K
~4K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for Gaurav arora

hi friend, this query selects 4th max record from the table . select top 1 * from vehicles where sno in(select top 4 sno from vehicles )order by sno desc regards, rathnakar

Member Avatar for crishlay
0
253
Member Avatar for krokodajl

[QUOTE=sknake;905163]There is no out of the box way to do this with MSSQL but its a common request for web applications so you can show rows 1-10, 11-20, 21-30, etc. on a website. Try googling "MSSQL PAGING" or "MSSQL PAGINATION" and you should come up with a lot of relevant …

Member Avatar for rathnakar
0
193
Member Avatar for fatjoez

hi friend, followind queries will help u, update table1 set column1=b.column1 from table1 a,table2 b where a.column2=b.column2 or update table1 set column1='ap' where dist in(select dist from tabl2) regards, rathnakar [QUOTE=fatjoez;907557]I have 3 tables, below are their structures ( a bit of pseudo code ) I'm trying to update one …

Member Avatar for rathnakar
0
220
Member Avatar for NextCom

hi friend, to disable trigger : DISABLE TRIGGER trigger_create to enable trigger: enable TRIGGER trigger_create regards, rathnakar

Member Avatar for rathnakar
-1
3K
Member Avatar for vytla

hi friend , use following query in your code(sql command) select case when date1 is null then 'date is not found' else convert(nvarchar,date1,105) end as date1 from datetest regards, rathnakar [QUOTE=vytla;914795]hi friends fetching datetime values from database, when data is null in code side it is displying the some garbage …

Member Avatar for rathnakar
0
178

The End.