Computer Science, asked by vasugupta8997, 10 months ago

write a pL/ SQL code ,which will accept three Numbers and print the largest among them.......​

Answers

Answered by T70StOrM
0

1)create table num(Number int primary key);

2)insert into num values(25,45,100);

3)select * from num where Number = )select Max(Number) from num);

Hope it helps :)

Similar questions