Examine the SQL statements that creates ORDERS table:For which columns would an index be automatically created when you execute the above SQL statement? () A. SER_NOB. ORDER_IDC. STATUSD. PROD_IDE. ORD_TOTALF. Composite index on ORDER_ID and ORDER_DATE
Examine the SQL statements that creates ORDERS table:For which columns would an index be automatically created when you execute the above SQL statement? ()
A. SER_NO
B. ORDER_ID
C. STATUS
D. PROD_ID
E. ORD_TOTAL
F. Composite index on ORDER_ID and ORDER_DATE
相关考题:
Statement是PreparedStatement的父接口。Statement对象用于执行不带参数的简单SQL语句;PreparedStatement对象用于执行预编译SQL语句。() 此题为判断题(对,错)。
下面是Statement接口中常用的执行SQL语句的方法,哪些说明是正确的?()A.execute(String sql)用于执行各种SQL语句,该方法返回一个boolean类型的值B.executeUpdate(String sql) 用于执行SQL中的query、insert、update和delete语句C.executeQuery(String sql) 用于执行SQL中的query语句D.executeUpdate(String sql) 用于执行各种SQL并返回 int类型结果
下面Statement接口的方法中,用于执行各种SQL语句的是()。A.executeUpdate(String sql)B.executeQuery(String sql)C.execute(String sql)D.executeDelete(String sql)
下面Statement接口的方法中,用于执行各种SQL语句的是()。A.executeUpdate(String sql)B.executeQuery(String sql)C.execute(String sql)D.executeDelete(String sql)
Statement对象本身包含SQL语句。