We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I created a db table named LOAN and I encountered error after executing this query.
CREATE TABLE LOAN ( L_ID INTEGER not null PRIMARY KEY, BORROWER INTEGER not null, BOOK INTEGER not null, ISSUER INTEGER not null, ISS_DATE TIMESTAMP not null, RECEIVER INTEGER , RET_DATE TIMESTAMP , FINE_PAID BOOLEAN );
L_ID
BORROWER
BOOK
ISSUER
ISS_DATE
RECEIVER
RET_DATE
FINE_PAID
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I created a db table named LOAN and I encountered error after executing this query.
CREATE TABLE LOAN
(
L_ID
INTEGER not null PRIMARY KEY,BORROWER
INTEGER not null,BOOK
INTEGER not null,ISSUER
INTEGER not null,ISS_DATE
TIMESTAMP not null,RECEIVER
INTEGER ,RET_DATE
TIMESTAMP ,FINE_PAID
BOOLEAN);
The text was updated successfully, but these errors were encountered: