sql server - select all results from only certain tables Using SQL in C# from a stored procedure that returns multiple tables -


i have stored procedure returns 20 tables.

i.e.:

table 1     id|a     01|whatever table2        id|b     01|whatever table3       id|c     01|whatever     02|whatever2     03|whatever3     04|whatever4 

i use following code grab result tables 1 column , 1 row:

            sqlreader.read();             rows = convert.tostring(sqlreader.getvalue(0));             sqlreader.nextresult(); 

when move next result, can use results of tables (would helpful grab columns no null values well)?

edit:

how table column 'c'


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -