“SQL SELECT SELECCIÓN” Código de respuesta

inserto sql para cada valor distinto

insert into your_table (col1, col2, col3)
select distinct col1, 'newval', col3
from your_table
DeuxAlpha

Cómo seleccionar un elemento único en SQL

DISTINCT
- select distinct * from employees; ==> 
  retrieves any row if it has at
  least a single unique column.

- select distinct first_name from employees; ==> 
      retrieves unique names
     from table. (removes duplicates)
     
- select distinct count(*) from employees;
     retrieve number of unique rows
     if any row has at least a single unique data.
Obedient Ocelot

SQL SELECT SELECCIÓN

SELECT DISTINCT col1, col2, ....
FROM table_name;

SELECT col1, MIN(col2)
FROM table_name
GROUP BY col1;
Kevin

Respuestas similares a “SQL SELECT SELECCIÓN”

Preguntas similares a “SQL SELECT SELECCIÓN”

Más respuestas relacionadas con “SQL SELECT SELECCIÓN” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código