Click here to Skip to main content
15,881,852 members
Home / Discussions / Database
   

Database

 
QuestionThe Log For the Database is Not Available Pin
Prakash S19-Jul-14 0:58
Prakash S19-Jul-14 0:58 
AnswerRe: The Log For the Database is Not Available Pin
Andrius Leonavicius19-Jul-14 13:40
professionalAndrius Leonavicius19-Jul-14 13:40 
GeneralRe: The Log For the Database is Not Available Pin
Prakash S20-Jul-14 20:08
Prakash S20-Jul-14 20:08 
GeneralRe: The Log For the Database is Not Available Pin
Andrius Leonavicius21-Jul-14 3:01
professionalAndrius Leonavicius21-Jul-14 3:01 
AnswerRe: The Log For the Database is Not Available Pin
Kornfeld Eliyahu Peter19-Jul-14 22:54
professionalKornfeld Eliyahu Peter19-Jul-14 22:54 
QuestionHow to select persons who didn't pay they'r bill for two mounth Pin
mohammadkaab18-Jul-14 5:57
mohammadkaab18-Jul-14 5:57 
AnswerRe: How to select persons who didn't pay they'r bill for two mounth Pin
Richard MacCutchan18-Jul-14 6:32
mveRichard MacCutchan18-Jul-14 6:32 
AnswerRe: How to select persons who didn't pay their bill for two months Pin
Richard Deeming18-Jul-14 6:49
mveRichard Deeming18-Jul-14 6:49 
Assuming that one person can have multiple payments, an INNER JOIN will return a record for every payment over two months old, regardless of whether the person has paid within the last two months.

What you need to do is find the person records which don't have a payment record within the last two months. To do that, you can use a Not Exists filter:
SQL
DECLARE @Today date = GetUtcDate();
DECLARE @CutoffDate date = DateAdd(month, -2, @Today);

SELECT
    *
FROM
    person
WHERE
    Not Exists
    (
        SELECT 1
        FROM payment
        WHERE payment.national_number = person.national_number
        And payment.payment_date > @CutoffDate
    )
;




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: How to select persons who didn't pay their bill for two months Pin
PIEBALDconsult18-Jul-14 7:47
mvePIEBALDconsult18-Jul-14 7:47 
GeneralRe: How to select persons who didn't pay their bill for two months Pin
Richard Deeming18-Jul-14 7:52
mveRichard Deeming18-Jul-14 7:52 
AnswerRe: How to select persons who didn't pay they'r bill for two mounth Pin
Eddy Vluggen18-Jul-14 6:49
professionalEddy Vluggen18-Jul-14 6:49 
GeneralRe: How to select persons who didn't pay they'r bill for two mounth Pin
Mycroft Holmes18-Jul-14 14:49
professionalMycroft Holmes18-Jul-14 14:49 
AnswerRe: How to select persons who didn't pay they'r bill for two mounth Pin
PIEBALDconsult18-Jul-14 7:42
mvePIEBALDconsult18-Jul-14 7:42 
Questionhow to select numbers (integers) only? Pin
Jassim Rahma16-Jul-14 22:52
Jassim Rahma16-Jul-14 22:52 
AnswerRe: how to select numbers (integers) only? Pin
Richard MacCutchan16-Jul-14 22:54
mveRichard MacCutchan16-Jul-14 22:54 
AnswerRe: how to select numbers (integers) only? Pin
thatraja16-Jul-14 23:01
professionalthatraja16-Jul-14 23:01 
AnswerRe: how to select numbers (integers) only? Pin
Mycroft Holmes17-Jul-14 12:49
professionalMycroft Holmes17-Jul-14 12:49 
AnswerRe: how to select numbers (integers) only? Pin
PIEBALDconsult17-Jul-14 13:52
mvePIEBALDconsult17-Jul-14 13:52 
GeneralRe: how to select numbers (integers) only? Pin
Jassim Rahma19-Jul-14 22:17
Jassim Rahma19-Jul-14 22:17 
GeneralRe: how to select numbers (integers) only? Pin
PIEBALDconsult20-Jul-14 4:50
mvePIEBALDconsult20-Jul-14 4:50 
QuestionHandle to chat room with mysql database Pin
Member 1094998616-Jul-14 4:08
Member 1094998616-Jul-14 4:08 
AnswerRe: Handle to chat room with mysql database Pin
Eddy Vluggen16-Jul-14 5:02
professionalEddy Vluggen16-Jul-14 5:02 
GeneralRe: Handle to chat room with mysql database Pin
Member 1094998616-Jul-14 7:18
Member 1094998616-Jul-14 7:18 
GeneralRe: Handle to chat room with mysql database Pin
Eddy Vluggen16-Jul-14 7:46
professionalEddy Vluggen16-Jul-14 7:46 
GeneralRe: Handle to chat room with mysql database Pin
Member 1094998616-Jul-14 7:53
Member 1094998616-Jul-14 7:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.