Top "Tsql" questions

T-SQL (Transact Structured Query Language) is the extension of SQL functionality supported by Sybase ASE and Microsoft SQL Server.

How do I UPDATE from a SELECT in SQL Server?

In SQL Server, it is possible to insert rows into a table with an INSERT.. SELECT statement: INSERT INTO Table (…

sql sql-server tsql select
How do I perform an IF...THEN in an SQL SELECT?

How do I perform an IF...THEN in an SQL SELECT statement? For example: SELECT IF(Obsolete = 'N' OR InStock = …

sql sql-server tsql if-statement case
OR is not supported with CASE Statement in SQL Server

The OR operator in the WHEN clause of a CASE statement is not supported. How can I do this? CASE …

sql sql-server tsql case case-when
How to return only the Date from a SQL Server DateTime datatype

SELECT GETDATE() Returns: 2008-09-22 15:24:13.790 I want that date part without the time part: 2008-09-22 00:00:00.000 How can I get …

sql sql-server tsql date datetime
Inserting multiple rows in a single SQL query?

I have multiple set of data to insert at once, say 4 rows. My table has three columns: Person, Id and …

sql sql-server tsql insert
Find all tables containing column with specified name - MS SQL Server

Is it possible to query for table names which contain columns being LIKE '%myName%' ?

sql sql-server tsql system-tables
Insert results of a stored procedure into a temporary table

How do I do a SELECT * INTO [temp table] FROM [stored procedure]? Not FROM [Table] and without defining [temp table]? …

sql sql-server sql-server-2005 tsql stored-procedures
SQL query to select dates between two dates

I have a start_date and end_date. I want to get the list of dates in between these two …

sql sql-server tsql datetime sql-server-2005
How can I get column names from a table in SQL Server?

I want to query the name of all columns of a table. I found how to do this in: Oracle …

sql sql-server sql-server-2008 tsql
How do I get list of all tables in a database using TSQL?

What is the best way to get the names of all of the tables in a specific database on SQL …

sql-server tsql database-table