PostgreSQL: seleccione en

En PostgreSQL , la selección en

select select_list
into variable_name
from table_expression;

en seleccionar en seleccionarseleccionar unirse al grupo por, teniendo

do $$
declare
   actor_count integer; 
begin
   -- select the number of actors from the actor table
   select count(*)
   into actor_count
   from actor;

   -- show the number of actors
   raise notice 'The number of actors: %', actor_count;
end; $$;

Producción:

En el ejemplo anterior hicimos lo siguiente:

  • actor_cuenta actor
  • seleccionar en actor_count
  • aviso de aumento actor_count
do $$
declare
   film_count integer; 
begin
   -- select the number of films from the actor table
   select count(*)
   into film_count
   from film;

   -- show the number of films
   raise notice 'The number of films: %', film_count;
end; $$;

Producción:

Publicación traducida automáticamente

Artículo escrito por RajuKumar19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *