PartOne Flashcards
<span><span>What does SELECT INTO do?</span></span>
Run the query. Create the target table. Insert the result of the query into the target table. All data type will be copied except constraints, triggers and indexes.
Which is not allowed to specify the target column in an insert stmt?
- default constraint
- not null
- identity
Identity
What is CROSS JOIN?
It performs cartesian product of the 2 input table.m rows in T1. n rows in T2. Cross join will produce m x n rows.
Left join / Right join
ON and WHERE works differently.The preserved side will return all rows regardless.The ON side just matches rows from the unpreserved side to the preserved side
INLINE table function
The function returns a table.Different from VIEW, it accepts parameters.
<span><strong>CREATE FUNCTION</strong> dbo.authors<br></br> ( @au_lname VARCHAR(40) )<br></br> <strong>RETURNS TABLE</strong><br></br> <strong>RETURN</strong><br></br> <strong>SELECT</strong> au_id, au_fname, au_lname, city, state<br></br> <strong>FROM </strong>authors<br></br> <strong>WHERE </strong>au_lname = @au_lname</span>
What is CROSS APPLY?
Similar to inner join.Does not return left side if table expression returns a empty set.
When a primary key or unique constraint is defined, SQL Server create ______ automatically.
Unique index
What’s the precedence?EXCEPT UNION INTERSECT
INTERSECT precedes UNION & EXCEPTUNION & EXCEPT are equal
Window functions
OVER ([PARTITION BY clause][ORDER BY clause][ROW or RANGE clause] )
Derived table
SELECT FROM(Select from where…) as d1 WHERE…
Describe INDEXED VIEW
An unique clustered index is created on the view and the actual result of the view query are stored on disk
VIEW WITH SCHEMABINDING
Guarantees the underlying table structures cannot be altered w/o dropping the view.
VIEW WITH ENCRYPTION
Make it difficult to discover the SELECT text of the view
VIEW WITH VIEW_METADATA
Return metadata instead of the base table
VIEW WITH CHECK OPTION
Prevent any updates thru the view that would cause some rows to get values no longer satisfying a where clause of the view
What are the VIEW restrictions?
- No order by
- Does not accept parameters
- Cannot create tables, permanent or temp
- Can only reference permanent table. No temp tables.
What is SYNONYM
Synonyms are names stored in a database that can be used as substitutes for other object names
How to move table from one schema to another
ALTER SCHEMA TRANSFER
ALTER TABLE cannot…
- Change column name
- Add or remove identity
DENSE_RANK ( ) OVER ( [] < order_by_clause > )
If two or more rows tie for a rank in the same partition, each tied rows receives the same rank. No gaps and always have consecutive ranks.
The WHERE clause returns cases where the predicate evaluates to _ and _ the rest. No false or NULL.
- TRUE
- Discards
SARG - search argument
Try not to include a field inside a function in the WHERE clause.
Bad - WHERE Year(myDate) = 2008.
Good - WHERE myDate >= ‘01-01-2008’ AND myDate < ‘01-01-2009’ instead.
How to show tiebreakers with TOP
SELECT TOP(n) WITH TIES
OFFSET-FETCH
OFFSET - skip m rows FETCH NEXT n ROWS ONLY
T-SQL logical order
FROM,
WHERE,
GROUP BY,
HAVING,
SELECT,
ORDER BY
OPENDATASOURCE
Provides ad hoc connection info as part of a 4-part object name, without using a linked server name.
T-SQL logical order
FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY
OFFSET-FETCH
- OFFSET - skip m rows
- FETCH NEXT n ROWS ONLY
Window functions
OVER ( [PARTITION BY clause] [ORDER BY clause] [ROW or RANGE clause] )
How to move table from one schema to another?
ALTER SCHEMA TRANSFER
What is SYNONYM
Synonyms are names stored in a database that can be used as substitutes for other object names
TRUNCATE resets _____ while DELETE don’t.
IDENTITY to the initial seed
What is distributed transaction
Transaction that span more than one server, by using a linked server.
__ Sales.Myorders AS TGT
<span>__Sales.Orders AS SRC ON TGT.orderid = SRC.orderid</span>
__( TGT.Custid <> SRC.Custid OR TGT.Empid <> SRC.Empid OR TGT.orderdate <> SRC.orderDate )
__SET TGT.Custid = SRC.Custid, TGT.Empid = SRC.Empid, TGT.orderdate = SRC.orderdate
__(SRC.orderid, SRC.Custid, SRC.empid, SRC.orderdate)
__ THEN DELETE;
- MERGE INTO
- USING
- WHEN MATCHED AND
- THEN UPDATE
- WHEN NOT MATCHED THEN INSERT VALUES
- WHEN NOT MATCHED BY SOURCE
How to get next value of a Sequence object
NEXT VALUE FOR
What is the three-valued logic?
- True
- False
- Unknown
col1 LIKE ‘!_%’ ESCAPE ‘!’
Look for value starting with an underscore. ‘!’ is the designated escape character.
RANK
The RANK function does not always return consecutive integers.