Vb . net / XML problem and SQL query Problem
Why we use XML in .net?
What is the use of this?
How we can pass the join SQL statement of more than two tables?
What is the use of different framework?
Why we use XML in .net?
What is the use of this?
How we can pass the join SQL statement of more than two tables?
What is the use of different framework?
Hi,
The custom tags are comparatively more self-descriptive.
XML is used to generate cross-platform interoperable file formats.
This describes "interoperable file format" Once you generate an XML file, it is open to each and every person. An input, and all the information required to understand the structure of your data, is included in the file.
SELECT a.au_lname, a.au_fname, t.title
FROM authors a INNER JOIN titleauthor ta
  ON a.au_id = ta.au_id JOIN titles t
  ON ta.title_id = t.title_id
WHERE t.type = 'trad_cook'
ORDER BY t.title ASC
au_lname         au_fname            title    Â
Ronald             Davidson               Ansi C
Carl                  Bobs                      Engineering Gra
one of the tables in the FROM clause, titleauthor, does not contribute any columns to the results. Also, none of the joined columns, au_id and title_id, appear in the results. Nonetheless, this join is possible only by using titleauthor as an intermediate table.
Hope it helped you.