About 21,600,000 results
Open links in new tab
  1. Can we pass parameters to a view in SQL? - Stack Overflow

    Apr 7, 2017 · A view is a stored sql text of a select query. Parameters are out of the discussion. When your stored query returns the column where you want to filter with, you can do it in the …

  2. How do I get the script to a database view - Stack Overflow

    Nov 5, 2010 · I lost the script for a view that I created. Can I retrieve / recreate the script from the database using management studio?

  3. Is there a find sql statement behind a view - Stack Overflow

    Jul 14, 2011 · Is there a find the actual sql statement behind a view. I am in sql management studio, i right clicked on the view and i dont see an option to reveal the sql behine the view.

  4. How to get a view table query (code) in SQL Server 2008 …

    I have a view in SQL Server 2008 and would like to view it in Management Studio. Example: --is the underlying query for the view Example_1 select * from table_aView View name: …

  5. sql - Select Columns of a View - Stack Overflow

    I'm attempting to select the column names of a view in a similar way as selecting from information_schema.columns. I can't seem to find a way to do this. Has anyone else done this …

  6. Difference between View and table in sql - Stack Overflow

    May 23, 2017 · Possible Duplicate: Difference Between Views and Tables in Performance What is the main difference between view and table in SQL. Is there any advantage of using views …

  7. sql - View based on SELECT with 'WITH' clause - Stack Overflow

    Jan 12, 2015 · create view ex_view as select alias3.col1, alias3.col2 from ( select col1, col2 from ( select dummy as col1, dummy as col2 from ( select dummy from dual ) alias1 ) alias2 ) alias3; …

  8. sql - Data from two tables into one view - Stack Overflow

    Jul 16, 2010 · Is it possible to grab data from two tables (that have the same fields) into one view. Basically, so the view sees the data as if it was one table.

  9. SQL View vs Microsoft Access Query - Stack Overflow

    Jul 30, 2016 · While most SQL Databases allow you to create a view, Microsoft Access has saved queries. I have read that Access Queries are not the same thing as SQL views, but that’s a …

  10. How to add new column in existing View in SQL-Server 2014 using …

    Sep 16, 2016 · I have created a view that is based on another view and a table. I want to add new column of type varchar. I did like below, But getting syntax error? I am new to SQL, So,could …