Cuestiones
ayuda
option
Mi Daypo

TEST BORRADO, QUIZÁS LE INTERESETitanic

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del test:
Titanic

Descripción:
Hundimiento del Titanic

Autor:
Mandraque
(Otros tests del mismo autor)

Fecha de Creación:
24/07/2018

Categoría:
Cine y TV

Número preguntas: 46
Comparte el test:
Facebook
Twitter
Whatsapp
Comparte el test:
Facebook
Twitter
Whatsapp
Últimos Comentarios
No hay ningún comentario sobre este test.
Temario:
Which of the following SQL statements are included in the category of DML? ¿Cuál de las siguientes declaraciones SQL se incluyen en la categoría de DML? Choose the correct answers. SELECT INSERT.
Which of the following are HANA SQLScript extensions to ANSI SQL? ¿Cuáles de las siguientes son extensiones HANA SQLScript para ANSI SQL? Choose the correct answers UPSERT Imperative SQL statements .
A primary key is a column or set of columns that uniquely identifies every row in a table. Una clave principal es una columna o conjunto de columnas que identifica de manera única cada fila en una tabla. Determine whether this statement is true or false. True.
Which of the following objects is used to ensure data consistency? ¿Cuál de los siguientes objetos se usa para garantizar la consistencia de los datos? Choose the correct answer Constraints .
Which of the following clauses is NOT in a SELECT statement? ¿Cuál de las siguientes cláusulas NO está en una declaración SELECT? SET.
Only one column may be specified in the SELECT clause of a SELECT statement. Solo se puede especificar una columna en la cláusula SELECT de una instrucción SELECT. False.
How is a literal value specified in SQL? ¿Cómo se especifica un valor literal en SQL? By using single quotes if it is a string and without quotes if it is numeric .
Which clause is used in a SELECT statement to eliminate Qué cláusula se usa en una instrucción SELECT para eliminar DISTINCT .
A null is not greater than, less than, or equal to any column value. Un nulo no es mayor que, menor que, o igual en cualquier valor de columna. True.
What is the difference between SUM and COUNT? ¿Cuál es la diferencia entre SUM y COUNT? SUM can only be used on a numeric column .
What is the result if the MIN aggregate is used on a string column? ¿Cuál es el resultado si el agregado MIN se utiliza en una columna de cadena? The first value in alphabetic order is displayed .
What is the purpose of a UNION command? ¿Cuál es el propósito de un comando de UNIÓN? To combine the result sets of multiple queries .
Which of the following types of join will list all rows from one table and the matching rows from the other? ¿Cuál de los siguientes tipos de unión contendra todas las filas de una tabla y las filas correspondientes de la otra? A left outer join .
A self join always requires the use of an alias. Una auto unión siempre requiere el uso de un alias. True.
The only operator allowed in the join condition is an equality. El único operador permitido en la condición de unión es una igualdad. False.
What type of subquery returns exactly one row? ¿Qué tipo de subconsulta devuelve exactamente una fila? Expression .
A query that contains a join cannot contain a subquery. Un query que contiene un join no puede contener un subquery. False.
In what type of subquery does the inner query reference the outer query? ¿En qué tipo de subconsulta la consulta interna hace referencia a la consulta externa? Correlated .
If an UPDATE statement does not have a where clause, how many rows will be updated? Si una instrucción UPDATE no tiene una cláusula where, ¿cuántas filas se actualizarán? All.
If an INSERT does not specify a value for a non-null column lacking a default, what is the result? Si un INSERT no especifica un valor para una columna no nula que carece de un valor predeterminado, ¿cuál es el resultado? An error.
How many rows will be inserted in a table by a standard INSERT? ¿Cuántas filas se insertarán en una tabla con un INSERT estándar? Choose the correct answers. 0 1.
In an UPSERT with a WHERE clause, if the WHERE clause does not match existing rows, the rows are inserted. Otherwise, the rows are deleted. En un UPSERT con una cláusula WHERE, si la cláusula WHERE no coincide con las filas existentes, las filas se insertan. De lo contrario, las filas se eliminan. False.
Which of the following data types are numeric? ¿Cuáles de los siguientes tipos de datos son numéricos? SMALLINT DOUBLE .
Which of the following will prevent duplicate values in a column? ¿Cuál de las siguientes opciones evitará valores duplicados en una columna? Choose the correct answers. Primary key Unique .
The ALTER TABLE command can drop columns from a table unless those columns are part of the primary key. El comando ALTER TABLE puede eliminar columnas de una tabla a menos que esas columnas sean parte de la clave principal. True.
Which conditions suggest that a table should be a column table? ¿Qué condiciones sugieren que una tabla debe ser una tabla de columnas? Choose the correct answers. The table has frequent data changes The table is very large .
What benefits do views provide? ¿Qué beneficios proveen las vistas? Choose the correct answers. Simplify queries Limit access to data .
If the view has a WHERE clause in which ColA = 100, and the select from the view has a WHERE clause in which ColA = 200, how much data will be selected? Si la vista tiene una cláusula WHERE en la que ColA = 100, y la selección de la vista tiene una cláusula WHERE en la que ColA = 200, ¿cuántos datos se seleccionarán? 0 rows, but no error .
Inserts, updates, and deletes can be performed against any view. Se pueden realizar inserciones, actualizaciones y eliminaciones en cualquier vista. False.
What is the difference between GROUP BY CUBE and GROUP BY ROLLUP? ¿Cuál es la diferencia entre GROUP BY CUBE y GROUP BY ROLLUP? GROUP BY CUBE aggregates in every dimension. .
In a SELECT with an OVER() clause, which of the following statements are true? En un SELECT con una cláusula OVER (), ¿cuál de las siguientes afirmaciones es verdadera? Choose the correct answers. ORDER BY specifies the order of the rows in the result set. The PARTITION BY clause is optional. .
If the current row has a value of 5000 and the three preceding rows have a value (in order) of 1000, 1500, and 3000, which rows would be included in ROWS BETWEEN 2 PRECEDING AND 1 PRECEDING? Si la fila actual tiene un valor de 5000 y las tres filas anteriores tienen un valor (en orden) de 1000, 1500 y 3000, ¿qué filas se incluirían en FILAS ENTRE 2 PRECEDENTES Y 1 PRECEDENTE? 1500 and 3000 .
If the current row has a value of 5000 and the three preceding rows have a value (in order) of 1000, 1500, and 3000, which rows would be included in RANGE BETWEEN 3500 PRECEDING AND CURRENT ROW? Si la fila actual tiene un valor de 5000 y las tres filas anteriores tienen un valor (en orden) de 1000, 1500 y 3000, ¿qué filas se incluirían en el RANGO ENTRE 3500 PRECEDENTES Y LA FILA ACTUAL? 1500, 3000, and 5000 .
Table User-Defined Functions can accept any number of input parameters and return any number of table results. Las funciones definidas por el usuario de una tabla pueden aceptar cualquier cantidad de parámetros de entrada y devolver cualquier número de resultados de la tabla. False.
Stored procedures must utilize only scalar parameters, or only table parameters. Los procedimientos almacenados deben utilizar solamente parámetros escalares o solo parámetros de tabla. False.
What kinds of error codes may be assigned to a declared CONDITION? ¿Qué tipos de códigos de error se pueden asignar a una CONDICIÓN declarada? System error codes and user-defined error codes. .
What commands can be used to associate custom error text with custom error conditions that lack error codes? ¿Qué comandos se pueden usar para asociar texto de error personalizado con condiciones de error personalizadas que carecen de códigos de error? SIGNAL or RESIGNAL. .
What are the major differences between SIGNAL and RESIGNAL? ¿Cuáles son las principales diferencias entre SIGNAL y RESIGNAL? RESIGNAL is used as part of an EXIT HANDLER and does not declare a particular exception to be active. By contrast, SIGNAL is executed as an independent command (although it may reference an EXIT HANDLER). SIGNAL indicates that a particular exception is in effect. .
Which commands can be used to create an index? ¿Qué comandos se pueden usar para crear un índice? Choose the correct answers. CREATE INDEX CREATE TABLE .
Every table is inside a schema. Cada tabla está dentro de un esquema. True.
What effect will the GRANT SELECT ON SCHEMA command have? ¿Qué efecto tendrá el comando GRANT SELECT ON SCHEMA? Choose the correct answers. The user will be able to select from any table in the schema The user will be able to select from any view in the schema .
If a user is not explicitly granted access to a table or a schema, they cannot select from the table. Si un usuario no tiene acceso explícito a una tabla o un esquema, no puede seleccionar desde la tabla. True.
Which SQL commands explicitly end a transaction? ¿Qué comandos de SQL finalizan de forma explícita una transacción? Choose the correct answers. COMMIT ROLLBACK .
Creating a column table causes an implicit commit. La creación de una tabla de columnas provoca una confirmación implícita. True.
According to the ACID definitions, durability means that the entire transaction is completed, or none of it is. De acuerdo con las definiciones de ACID, la durabilidad significa que se completa la transacción, o nada de eso. False.
What is the default isolation level in HANA? ¿Cuál es el nivel de aislamiento predeterminado en HANA? READ COMMITTED .
Denunciar test Consentimiento Condiciones de uso