How do I create a view dynamically in SQL Server using C#?
相关问题
- Sorting 3 numbers without branching [closed]
- SQL join to get the cartesian product of 2 columns
- sql execution latency when assign to a variable
- Graphics.DrawImage() - Throws out of memory except
- Difference between Types.INTEGER and Types.NULL in
You can use the following code to write the query for a view:
Execute the query.
Something like this, obviously your connection code will be different (better):