✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Indica qué ocurriría al ejecutar la siguiente consulta sobre la tabla paciente en Apache Cassandra:
CREATE TABLE paciente ( id_paciente uuid, nombre text, fecha_medicion timestamp, pulsaciones int, PRIMARY KEY ((id_paciente, fecha_medicion), nombre, pulsaciones));
SELECT * FROM paciente WHERE id_paciente = 123e4567-e89b-12d3-a456-426655440b23 AND fecha_medicion ='2020-05-23 10:40:00' AND nombre = 'Juan' AND pulsaciones = 100;