Forum: VB.NET Oct 4th, 2007 |
| Replies: 8 Views: 2,021 Hi,
I want to get records that are in table 1 but do not exist in table 2. i mean records not (number dialed). bcz there are records of calls made to same telephone number but do not have the... |
Forum: VB.NET Oct 3rd, 2007 |
| Replies: 8 Views: 2,021 Hi
I tried this solution. It worked but the result is incomplete. more than 2000 records not included in the answer table.
Select
t1.*
from
Table1 t1
left join Table2 t2 on... |
Forum: VB.NET Oct 2nd, 2007 |
| Replies: 8 Views: 2,021 Thanks a lot for your help
Tried the above query but I got the follwoing message error;
Syntax error (missing operator) in query expression
Phone2 + CAST(CallDate2 AS varchar)
Please... |
Forum: VB.NET Oct 2nd, 2007 |
| Replies: 8 Views: 2,021 I m VERY new to SQL I have 2 table of itemized telephone call statements made during the same month. Table 1 has all the telephone call records whereas Table 2 does not have all the calls . The... |