CREATE table prices (
  kodBook int primary key (kodBook) not null,
  price int not null,
  kategory varchar(30),
  );

insert into prices(kodBook,price,kategory) VALUES (111,40,'torkish') ;
insert into prices(kodBook,price,kategory) VALUES (112,80,'torkish') ;
insert into prices(kodBook,price,kategory) VALUES (115,110,'torkish') ;
insert into prices(kodBook,price,kategory) VALUES (113,100,'short') ;
insert into prices(kodBook,price,kategory) VALUES (114,60,'long') ;

select top 3 * from prices
order by price desc 
by