Having problems with this select in Oracle PLSQL

I have this code:

create view nombres_lab as
    select L.NOMBRE_LAB, R.NOM_REG, count(*) as vacunas_suministradas
    from LABORATORIOS L
    inner join CREA_VACUNAS CV on l.cod_lab = cv.cod_lab
    inner join vacunas V on cv.cod_vac = v.cod_vac
    inner join vtorio VT on v.cod_vac = vt.cod_vac
    inner join datos_vac_sum DVS on vt.cod_vtorio = dvs.cod_vtorio
    inner join frasco_vac FV on dvs.s_unica = fv.s_unica
    inner join direccion D on vt.cod_dir = d.cod_dir
    inner join region R on d.cod_reg = r.cod_reg
    where v.cod_vac = 100202 or v.cod_vac = 100303
    group by l.nombre_lab, r.nom_reg;


create or replace procedure ranking is

    
begin
    
    
    select nombre_lab, nom_reg, count(*) as vacunas_suministradas, rank() over(order by count(*) desc) as ranking from nombres_lab group by nom_reg, nombre_lab;
    

end;

I’ve been trying to convert this select to an select into so that it can work inside the procedure, but nothing that i try works.

Error:  PLS-00428: an INTO clause is expected in this SELECT statement

I know its weird to do just a select in the procedure and nothing more, but i want to know if its possible

Casino Slot Features That Every Player Should Understand
more

Casino Slot Features That Every Player Should Understand

Modern slot games offer far more than spinning reels. Developers now build games with interactive features, themed bonus rounds, expanding symbols, and progressive rewards that create a more engaging experience. Understanding how these features work helps you choose games that match your playing style instead of relying on guesswork. Whether you play at a Casino […]

Read More
How to Find Slot Gacor Games That Actually Perform 
more

How to Find Slot Gacor Games That Actually Perform 

Slot gacor is a term from Indonesian gambling communities. It describes slot machines that deliver frequent wins or higher payouts. The word “gacor” comes from local slang meaning “loud” or “active.” Players use it to identify games that seem to perform better than others. Modern slot games operate using random number generators. These RNG systems […]

Read More
TikTok Data Scraping Guide: Methods, Tools & Insights
more

TikTok Data Scraping Guide: Methods, Tools & Insights

In today’s fast-moving digital landscape, short-form video platforms have become a goldmine of publicly available information. Among them, TikTok stands out due to its massive global user base and highly engaging content ecosystem. This has led to increasing interest in Tiktok data scraping, a process where publicly accessible information from the platform is collected and […]

Read More