About 50 results
Open links in new tab
  1. sql server - SQL select from a select query - Stack Overflow

    I want to do a select request that perform a first select and then use that selection to perform a second select. I made a 1st version using a temp table but I would like to know - is there is a wa...

  2. sql - How to SELECT FROM stored procedure - Stack Overflow

    May 4, 2017 · I have a stored procedure that returns rows: CREATE PROCEDURE MyProc AS BEGIN SELECT * FROM MyTable END My actual procedure is a little more complicated, which is why a …

  3. How do I perform an IF...THEN in an SQL SELECT?

    Sep 15, 2008 · The CASE statement is the closest to IF in SQL and is supported on all versions of SQL Server.

  4. sql - Using a SELECT statement within a WHERE clause - Stack Overflow

    SELECT * FROM ScoresTable WHERE Score = (SELECT MAX(Score) FROM ScoresTable AS st WHERE st.Date = ScoresTable.Date) Is there a name to describe using a SELECT statement within …

  5. Nested select statement in SQL Server - Stack Overflow

    SELECT name FROM agentinformation Doesn't the inner select statement create a result set which the outer SELECT statement then queries?

  6. How to create a table from select query result in SQL Server 2008

    May 22, 2013 · The SELECT INTO statement creates a new table and populates it with the result set of the SELECT statement. SELECT INTO can be used to combine data from several tables or views …

  7. Can I pass variable to select statement as column name in SQL Server ...

    Oct 15, 2012 · Possible Duplicate: SQL: Select dynamic column name based on variable I have the following simple select statement: DECLARE @value varchar(10) SET @value = 'intStep' SELECT …

  8. sql - Exclude a column using SELECT * [except columnA] FROM tableA ...

    SELECT * [except columnA] FROM tableA The only way that I know is to manually specify all the columns and exclude the unwanted column. This is really time consuming so I'm looking for ways to …

  9. How can I select from list of values in SQL Server

    Oct 14, 2009 · Is the important thing here to get a distinct list of those values, or to get that list of values into SQL? As @JeppeStigNielsen says, there are other ways to get distinct values from a text list …

  10. Using If else in SQL Select statement - Stack Overflow

    Nov 23, 2012 · I have a select statement which will return 2 columns. ID | IDParent Then in my program I have to test if IDParent is < 1 then use ID ELSE use IDParent Is there a way to use an If Else like