convert database table into XML schema file

后端 未结 3 1130
萌比男神i
萌比男神i 2021-02-06 18:50

I am using SQL Server 2005. Is there any command or GUI tool (e.g. any menu/function from SQL Server management studio) to convert database table into XML schema file (.xsd)?

3条回答
  •  忘掉有多难
    2021-02-06 19:31

    I've found this. Give it a try

    Select CourseID, Name, CoursePrice
    FROM CouseMaster.Course Course
    FOR XML AUTO, XMLSCHEMA
    

提交回复
热议问题