Q2
Single choice
Table T1 was created with the following command: CREATE TABLE t1 (c1 XML)
A stored procedure is required that takes two input parameters: PARM1 (XML data type) PARM2 (VARCHAR(32000) data type) and performs the following actions:
1. Checks to see if the value of the ITEM element of the document passed in as PARM1 is less than 200 - if so, inserts the value of PARM1 into column C1 of table T1
2. Inserts the value of PARM2 into column C1 of table T1
Which of the following SQL statements will create such a procedure?
