Kinda new to Database scripting,
- I want a script that will show me 10’s of columns from 10’s of columns.
- Script for changing values of 10’s columns from 10’s of columns.
I know I can use Select statement but is that best practice ?
Edit
I tired
Select
table1.column1,
table1.column2,
table2.column1
......
table100.column100 FROM table1,table2,.....table100;
but getting this error
Msg 208, Level 16, State 1, Line 1 Invalid object name ‘table1’.
Answer
Few table were deleted by mistake
1 Answer