1

C# を使用して SQL Server でビューを動的に作成するにはどうすればよいですか?

4

2 に答える 2

5

このようなもの、明らかにあなたの接続コードは異なります(より良い):

SqlConnection conn = null;
conn = new SqlConnection("yourConnectionString");
conn.Open();
string strSQLCommand = "CREATE VIEW vw_YourView AS SELECT YOurColumn FROM YourTable";
SqlCommand command = new SqlCommand(strSQLCommand, conn); 
string returnvalue = (string)command.ExecuteScalar(); 
conn.Close();
于 2008-12-03T11:33:40.760 に答える
3

次のコードを使用して、ビューのクエリを記述できます。

query = " Create View [Viewname] Select ....";

クエリを実行します。

于 2008-12-03T10:19:48.133 に答える