15,994,910 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by kirthiga S (Top 38 by date)
kirthiga S
14-Mar-22 2:22am
View
Cursor code perfectly working for my scenario. Is there any other option other then cursor.
kirthiga S
20-Sep-18 8:18am
View
Nice one
kirthiga S
23-Jul-18 0:41am
View
Its not a single value, its a sum of this group. I have arrived all other values.
kirthiga S
19-Jun-18 8:15am
View
I have tried for multiple weeks
kirthiga S
18-Jun-18 5:51am
View
Query is working. Instead of monday of 3rd week I need 3rd monday of the month
kirthiga S
15-Jun-18 7:41am
View
the month
kirthiga S
15-Jun-18 7:40am
View
That's what how can I do
kirthiga S
15-Jun-18 7:37am
View
My requirement is how to specify the conditions for monday of third week and other weeks
kirthiga S
11-Jun-18 5:24am
View
Ya It's working
kirthiga S
11-Jun-18 5:07am
View
It is a space
kirthiga S
16-Jun-16 1:50am
View
Yes Right
kirthiga S
16-Jun-16 1:44am
View
If ARR=0 RN becomes 0.When ARR again starts RN has to start again from 1
kirthiga S
16-Jun-16 1:44am
View
Deleted
If ARR=0 RN becomes 0.When ARR again starts RN has to start again from 1
kirthiga S
16-Jun-16 1:04am
View
User Month Lmonth ARR RN
A1 200906 200902 1 4
A1 200907 200902 2 5
Thank you.
For above rows RN updated as 4 & 5. I need RN as 1 & 2.
kirthiga S
16-Jun-16 0:59am
View
Both questions are different
kirthiga S
16-Jun-16 0:57am
View
RN column is my expected output. For each User Month should be unique.
Ex. For User A1 Month starts from 200810 to 200907.
kirthiga S
15-Jun-16 7:57am
View
Thanks for your suggestion.. I post this as new query
kirthiga S
15-Jun-16 6:14am
View
Thank you.. It works.
I need one additional query. If ARR=0 then RN again starts from 1
kirthiga S
27-Nov-15 4:03am
View
Is there any posible way using cte
kirthiga S
12-Jun-14 1:22am
View
@Thava Rajan
Thank u. Your query is simple and working for my scenario. We can use this for limited case.
kirthiga S
11-Jun-14 5:21am
View
Deleted
Still not getting required result.
Function produce result like this
AMH5
AMH6
AMH11
AMH12
AZC1
AZC2
kirthiga S
28-May-14 3:08am
View
Hi need this for a requirement
Declare @Var1 Varchar(10),
@M201304 numeric(12,2),@M201305 numeric(12,2),@mth varchar(6)
Set @M201305 = 2000
Set @M201304 = 1000
Set @mth='201305'
Set @Var1= '@M'+@mth
Select @Var1
I have to get the numeric data as output for @var1
How to modify my query to achieve this
kirthiga S
10-Feb-14 5:26am
View
Its 365 only not 36525
kirthiga S
10-Feb-14 4:25am
View
It is consistent only. C3 should be (prev C4 * current C2) /365.
C4 should be prev C4 + current C3
kirthiga S
30-Jan-14 7:19am
View
Thank u Pallini.. The Eqivalent SQL 2008 query is
select Loan,InsNo,InsAmount,ROW_NUMBER() over(partition by Loan order by InsAmount )Rn into #1
from vary where InsNo<>0 order by Loan,InsAmount
select distinct Loan into #2 from #1 where InsNo-Rn<>0
select distinct a.Loan into #3 from a left join #2 b on a.Loan=b.Loan where b.Loan is null
kirthiga S
30-Jan-14 4:21am
View
I dont need data in descending order. I want the list of Loan Numbers where the Instalment amount in descending order.
kirthiga S
9-Jan-14 23:48pm
View
Date format is not my query. My requirement is to calculate the amount on day basis.
kirthiga S
12-Jun-13 6:38am
View
How to modify this one to get my result..
select * from A join B on a.code=b.code where Address like '%Add1%'
kirthiga S
3-May-13 4:34am
View
Im having more than 4000 tables in my database. It is not easy to use select * into for all the tables. One more thing i want all constraints and indexes as it is.
kirthiga S
27-Mar-13 7:11am
View
Hi Karruksen,
Here positions are given manually. For single row its ok.. For multiple rows with varying position of delimiter i need a query.
kirthiga S
13-Feb-13 1:57am
View
Hi Prabhu,
If I have some internal grouping how to proceed the same.
kirthiga S
27-Dec-12 7:04am
View
My query's output is
Nos MyDate
1 2012-01-30
2 2012-02-29
3 2012-03-29
4 2012-04-29 and so on
My required output is
Nos MyDate
1 2012-01-30
2 2012-02-29
3 2012-03-30
4 2012-04-30 and so on
How to acheieve this??
kirthiga S
27-Dec-12 6:24am
View
Hi Aarti,
My query is working its not a problem but my question is how can i acheive my required result.. Just go through the examples i gave.
kirthiga S
29-Aug-12 6:40am
View
MS Excel 2003
kirthiga S
16-Aug-12 2:55am
View
Thank you..
I need this as a sql function. Is it possible
kirthiga S
3-Aug-12 7:11am
View
Thank u santhosh.. Its clear
kirthiga S
3-Aug-12 6:05am
View
Hi Santhosh,
Can you give any example for this scenario
kirthiga S
28-Jul-12 4:55am
View
Ya its working..
Show More