Is it possible to send n ints to a stored procedure as parameters? The reason is because I need to select n orders and call a sproc to then send back only those order ids I selected.
For sql 2000, Very similar to what I asked here Get distinct max date using SQL But this time the dates aren\'t unique so for this table pc_bsprdt_tbl
Suppose my table contains the following information: row | ID|date1|date2| place| value --------------------------------------------------------------------------
Typically, I test an update by running a query using the where statement and then after verifying that it does what I think I want it to copying the where clause to the update statement an开发者_开发百
I am trying to obtain a sequential row numbering, but whatever I am trying is not working. Here is my query
I\'m using SQL Server 2000 and I\'m not sure if there is already a function to add any number of 0\'s to an nchar(n), or if this is best done in a function?
I\'m trying to add 0\'s to the beginning of an nchar(n). Is their a format function in SQL Server 2000 to开发者_如何学Go add 0\'s to an int so that it will always have n number of digits with leading
I\'m not sure quite how to title my question but this is what I\'m trying to do: Given pc_tmppl_tbl pc_tmppl_attach pc_tmppl_val1pc_tmppl_crtdt
I\'m running the following query: select syscolumns.name from syscolumns,sysobjects where syscolumns.id = sysobjects.id and
I have a MVC Web Application using the following approach: public class MyController : Controll开发者_开发百科er