About 11,200,000 results
Open links in new tab
  1. What does <> (angle brackets) mean in MS-SQL Server?

    Nov 8, 2013 · In My Query one place some other developer using <> (angle brackets) What does it mean ?

  2. Find all tables containing column with specified name

    17 In MS SQL Server Database, use this query to get the tables and respective column names that contains the input text:

  3. Concatenate text from multiple rows into a single text string

    Consider a database table holding names, with three rows: Peter Paul Mary Is there an easy way to turn this into a single string of Peter, Paul, Mary?

  4. How to find SQL Server running port? - Stack Overflow

    Yes I read this How to find the port for MS SQL Server 2008? no luck. telnet 1433 returns connection failed, so I must specify other port. I tried to use netstat -abn but I don't see sqlservr...

  5. How to check for Is not Null And Is not Empty string in SQL server?

    Dec 28, 2011 · How can we check in a SQL Server WHERE condition whether the column is not null and not the empty string ('')?

  6. How to connect to a local database in SQL Server Management Studio?

    Apr 6, 2017 · I have downloaded the SQL Server Management Studio (SSMS) 2016 to recover a huge .bak file which is an old backup of a database. But first of all I need to connect to a DB Server. After …

  7. Meaning of square brackets [] in MS-SQL table designer?

    The square brackets [] are used to delimit identifiers. This is necessary if the column name is a reserved keyword or contains special characters such as a space or hyphen. Some users also like to use …

  8. SQL Server SELECT into existing table - Stack Overflow

    I am trying to select some fields from one table and insert them into an existing table from a stored procedure. Here is what I am trying: SELECT col1, col2 INTO dbo.TableTwo FROM dbo.TableOne W...

  9. How do I perform an IF...THEN in an SQL SELECT? - Stack Overflow

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

  10. How can I delete using INNER JOIN with SQL Server?

    Sep 10, 2016 · I want to delete using INNER JOIN in SQL Server 2008. But I get this error: Msg 156, Level 15, State 1, Line 15 Incorrect syntax near the keyword 'INNER'. My code: DELETE FROM …