write a sql query retrive all xml data.

how to retrive xml data wit single sql query.



write a sql query retrive all xml data. how to retrive xml data wit single sql query...

Answer / Abhilash Mishra

SQL does not directly handle XML data natively. To work with XML in SQL, you would typically use Extensible Stylesheet Language (XSL) or XQuery depending on the database management system you're using. However, storing XML as Binary Large Object (BLOB) and reading it back into a string can be done with SQL:

```sql
SELECT BINARY_TO_CHAR(xml_column) AS xml_data FROM table_name;
```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SOAP Interview Questions

what is the difference between a web service and SOA?

1 Answers  


Explain about SOAP with an example of Industry usage.

1 Answers  


what is the diffrence between xmlparsing and json parsing?

1 Answers  


Inside the soapui where groovy script can be used?

1 Answers  


What are the tools used for testing web services?

1 Answers  


State the syntax rule for soap message?

1 Answers  


What are the advantages and disadvantages of soap?

1 Answers  


List out important characteristics of soap envelop element?

1 Answers  


Explain about HTTPS in SOAP?

1 Answers  


what is SOAP envelop element?

1 Answers  


How can user use the facilities that are provided by soap?

1 Answers  


Can soap use rest?

1 Answers  


Categories