CREATE TABLE signup(
ID INT PRIMARY KEY IDENTITY(1,1) ,
username VARCHAR(30) NOT NULL,
email VARCHAR(30) NOT NULL,
passwd VARCHAR(30) NOT NULL,
);
so , whats the problem is in the mood table i am getting the null , instead the user id from the signup table
Someone show me the right direction .
Thanks in Advance