Viewing 15 posts - 1 through 15 (of 16 total)
CREATE TABLE [BillPayment] (
[billpaymentId] [int] IDENTITY (1, 1) NOT NULL ,
[billPaymentDate] [datetime] NULL ,
[newBillBalance] [float] NULL ,
[billAmount] [float] NULL ,
CONSTRAINT [PK_BillPayment] PRIMARY KEY CLUSTERED
(
[billpaymentId]
 
July 28, 2006 at 5:11 am
1. yes; payCode is for cheque; cash or card payment. how can we make relation with paymentTypes if we remove paymentId from the table?????
2. if i loosely coupled invoices with payment...
July 18, 2006 at 2:35 pm
Hi,
CREATE TABLE [Payment] (
[mobileNo] [bigint] NOT NULL ,
[customerId] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[referenceNo]...
July 13, 2006 at 4:19 am
i wishhhhhhhhh i can do that
but problem is when i test in query analyzer; it also says these values must bed entered
July 12, 2006 at 2:42 pm
in the table both; userId and branchId are Part of PK that's composite key. how can i join on both these keys??
June 26, 2006 at 3:50 pm
ive tried to get this data through my application also. there is a drop down list which is getting data directly from database and i've to just select it but problem remains...
June 26, 2006 at 3:46 pm
plz explain what do you mean by order of insertion?? do u mean order of attributes or order of tables?
if this is order of tables then plz tell me...
June 26, 2006 at 5:55 am
no groupId exists in the table "Groups". it already has data inserted in it!!!
June 25, 2006 at 11:34 pm
Viewing 15 posts - 1 through 15 (of 16 total)