About 66,900 results
Open links in new tab
  1. sql - How to create a View with a With statement ... - Stack Overflow

    Aug 6, 2014 · Put the with after the create view statement: create view t2 as with t as (select 1 as col) select * from t; Here is a SQL Fiddle showing this example.

  2. 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 …

  3. Create Database Views using EF Core Code First approach

    21 I am working on a new application that requires, the creation of DB Views. I am using EF core with MySql flavor and using the Code First approach to create the DB and tables. I didn't find a …

  4. Is it possible to create index on view columns? - Stack Overflow

    When I am creating an index on a view, it shows the following error: ORA-01702: a view is not appropriate here create view xx_emp for select * from emp; What is the reason behind it?

  5. sql - Creating View from Another View - Stack Overflow

    You can sometimes get performance issues doing this, and it might be faster and more reliable - though possibly harder to maintain - if you create your new view against the same base tables, …

  6. sql server - Create View - Declare a variable - Stack Overflow

    I am creating a view that is using that STUFF function. I want to put the result of STUFF in a variable for my view. The problem I am having is declaring my variable. It gives me the …

  7. IF condition in view in SQL Server - Stack Overflow

    Views only allow select statements as stated in here if you need to do if on column values you can use a SELECT CASE WHEN COLUMN1 = 1 THEN COLUMNX ELSE COLUMNY END FROM …

  8. sql server - Can I grant a database user permission to create views …

    I'd like to set up a security situation where my database user ("ApplicationUser") has permission to create, alter and drop views within a schema. If I execute the statement GRANT ALTER ON …

  9. sql - Creating a View using stored procedure - Stack Overflow

    Oct 10, 2011 · 17 If you want to create a view from within a SP you need to use dynamic SQL. Something like this. create procedure ProcToCreateView as exec ('create view MyView as …

  10. How to check if a view exists and create if it does not

    Mar 7, 2018 · Unless I'm reading your SQL wrong, your EXISTS is checking for the existence, and then you're trying to CREATE it. If the view already exists, the CREATE will fail.