create table feesentry_tb
(
stud_rollno int,
Paidfee float(20),
remain_fee float(20),
)
in this example i have shown how to create student fee table .
taken int and float don't assign value to int. else it will show error.
(
stud_rollno int,
Paidfee float(20),
remain_fee float(20),
)
in this example i have shown how to create student fee table .
taken int and float don't assign value to int. else it will show error.
0 comments: