SQL that needs to be understood before an interview

Source: Internet
Author: User
Tags joins

    • Description: Create a database
Create DATABASE Database-name
    • Description: Deleting a database
Drop database dbname Macau Venetian Casino
    • Description: Backing up SQL Server

To create a device that backs up data

Use masterexec sp_addumpdevice ' disk ', ' testback ', ' C:\mssql7backup\MyNwind_1.dat '

Start Backup

BACKUP DATABASE pubs to Testback
    • Description: Create a new table
CREATE TABLE TabName (col1 type1 [NOT NULL] [primary key],col2 type2 [NOT NULL],..)

To create a new table from an existing table:

CREATE table tab_new like Tab_old (creating new table with old table) CREATE table tab_new as Select Col1,col2 ... from tab_old definition only
    • Description: Delete a new table
drop table TabName
    • Description: Add a column
Alter table tabname Add column col type

Note: Columns cannot be deleted after they are added. DB2 the column plus the data type can not be changed, the only change is to increase the length of the varchar type.

    • Description: Add a primary key
Alter table TabName Add primary key (COL)

Description: Delete primary key

Alter table TabName Drop primary key (COL)
    • Description: Create an index
Create [unique] index idxname on tabname (col ...)

Delete Index

Drop INDEX Idxname

Note: The index is immutable and you must remove the rebuild if you want to change it.

    • Description: Create a view
CREATE VIEW viewname AS SELECT statement

Delete a view

Drop View ViewName
    • Description: A few simple basic SQL statements
Select: SELECT * FROM table1 where range insert: INSERT INTO table1 (field1,field2) VALUES (value1,value2) Delete: Remove from table1 where scope update : Update table1 set field1=value1 where scope lookup: SELECT * FROM table1 where field1 like '%value1% '---the syntax of like is very subtle, check the information! Sort: Select  * Total from table1 order by FIELD1,FIELD2 [desc]: Select count as TotalCount from table1 summation: select SUM (field1) as Sumvalue from Table1 Average: Select AVG (field1) as Avgvalue from table1 maximum: select Max (field1) as MaxValue from table1 min: select min (field1) as MinValue from table1
    • Description: Several advanced query arithmetic words

UNION operator: The union operator derives a result table by combining the other two result tables (for example, TABLE1 and TABLE2) and eliminating any duplicate rows in the table. When all is used with the Union (that is, union ALL), duplicate rows are not eliminated. In both cases, each row of the derived table is either from TABLE1 or from TABLE2.

EXCEPT operator: The EXCEPT operator derives a result table by including all rows in TABLE1 but not in TABLE2 and eliminating all duplicate rows. When all is used with EXCEPT (EXCEPT all), duplicate rows are not eliminated.

INTERSECT operator: The INTERSECT operator derives a result table by including only rows in TABLE1 and TABLE2 and eliminating all duplicate rows. When all is used with INTERSECT (INTERSECT all), duplicate rows are not eliminated.

Note: Several query result rows that use an operation word must be consistent.

    • Description: Using an outer join

Ieft outer join: Left OUTER join (left JOIN): The result set includes a matching row for the join table and all rows of the left join table.

Sql:select a.a, A.B, A.C, B.C, B.D, B.f from a left off JOIN b on a.a = B.C

Right outer join: Left OUTER join (right Join): The result set includes both the matching join row for the join table and all rows of the right join table.

Full outer join: All outer joins: includes not only the matching rows of the symbolic join table, but also all the records in the two join tables.

Next, let's look at some nice SQL statements

      1. Description: Copy table (copy structure only, source table name: A new table name: B) (Access available)
Law one: SELECT * into B from a where 1<>1 Method II: Select top 0 * into B from a
      1. Description: Copy table (copy data, source table name: A target table name: B) (Access available)
Insert into B (A, B, c) select d,e,f from B;
      1. Description: A copy of a table across databases (using absolute paths for specific data) (Access is available)
Insert into B (A, B, c) Select d,e,f from B in ' specific database ' WHERE condition example:. From B in ' "&server.mappath (". ") & "\data.mdb" & "' Where."
      1. Description: Subquery (table name 1:a table name 2:b)
Select A,b,c from a where a in (select D from B) or: Select A,b,c from a where a in (all-in-a-
      1. Description: Displays the article, the author, and the last reply time
Select A.title,a.username,b.adddate from Table A, (select Max (adddate) adddate from table     where Table.title=a.title) B
      1. Description: Outer join query (table name 1:a table name 2:b)
Select A.a, A.B, A.C, B.C, B.D, B.f from a left off JOIN b on a.a = B.C
      1. Description: Online view query (table name 1:a)
SELECT * FROM (select A,b,c from a) T where t.a > 1;
      1. Description: The usage of between, between limits the query data range including the boundary value, not between does not include
SELECT * FROM table1 where time between time1 and Time2select A,b,c, from table1 where a is not between value 1 and value 2
      1. Description: in how to use
SELECT * FROM table1 where a [not] in (' Value 1 ', ' Value 2 ', ' Value 4 ', ' Value 6 ')
      1. Description: Two associated tables that remove information that is not already in the secondary table in the main table
Delete from table1 where NOT EXISTS (SELECT * from table2 where table1.field1=table2.field1)
      1. Description: Four table joint search problem
SELECT * from a left inner join B in a.a=b.b right inner join C on A.A=C.C inner join D on     a.a=d.d where ...
      1. Description: Schedule five minutes advance reminder
Sql:select * from schedule where DateDiff (' minute ', F start time, GETDATE ()) >5
      1. Description: A SQL statement to take care of database paging
Select Top b.* from (select Top 20 primary key field, sort field from table name order by sort field desc) A,    table name B where B. primary key field = A. primary key field order by a. Ordinal field
      1. Description: Top 10 records
Select Top Ten * form table1 where range
      1. Description: Select all information for a maximum record in the same data for each set of B values (similar usage can be used for forum monthly leaderboard, monthly hot product analysis, ranking by subject score, etc.)
Select A,b,c from tablename ta where a= (select Max (a) from TableName TB where tb.b=ta.b)
      1. Description: Include all rows in TableA but not in TableB and TableC and eliminate all duplicate rows to derive a result table
(select a from TableA) except (select a from TableB) except (select a from TableC)
      1. Description: Randomly remove 10 data
Select Top * FROM tablename ORDER by NEWID ()
      1. Description: Random Selection of records
Select NEWID ()
      1. Description: Delete duplicate records
Delete from TableName where ID not in (the Select Max (ID) from tablename GROUP by Col1,col2,...)
      1. Description: Lists all table names in the database
Select name from sysobjects where type= ' U '
      1. Description: Lists all of the table's
Select name from syscolumns where id=object_id (' TableName ')
      1. Description: Lists the type, Vender, and PCs fields, arranged in the Type field, which makes it easy to implement multiple selections, similar to case in select.
Select Type,sum (case vender if ' A ' then the PCs else 0 end),    sum (case vender if ' C ' then the PCs else 0 end), sum (case vend Er when the ' B ' then the PCs else 0 end) from the     tablename GROUP by type

Show Results:

Type vender pcs pc a 1 pc a 1 Disc B 2 disc a 2 mobile B 3 Mobile phone C 3
      1. Description: Initialize table table1
TRUNCATE TABLE table1
      1. Description: Select a record from 10 to 15
Select Top 5 * FROM (select top [from table] ORDER by ID ASC) Table_ alias ORDER by id DESC

Random selection of the database record method (using the Randomize function, through the SQL statement implementation), the data stored in the database, the random number characteristics can give the above effect, but they may be too slow. You can't ask the ASP to "find a random number" and print it out. A common solution is to create a loop that looks like this:

Randomizernumber = Int (rnd*499) +1 while not objrec.eofif Objrec ("ID") = Rnumber then ... Here is the Execute script ... end ifobjrec.movenextwend

It's easy to understand. First, you take out a random number within the range of 1 to 500 (assuming that 500 is the total number of records in the database). Then, you traverse each record to test the value of the ID and check if it matches the rnumber. If the condition is met, execute the piece of code that starts with the then keyword. If your rnumber equals 495, it can take longer to cycle through the database. Although the 500 figure looks larger, it is a small database compared to a more robust enterprise solution, which typically contains thousands of records within a database. You're not going to die now?

With SQL, you can quickly find the exact record and open a recordset that contains only that record, as shown here:

Randomizernumber = Int (rnd*499) + 1 sql = "SELECT * from Customers Where ID =" & Rnumber Setōbjrec = objConn.Execute (SQL) Response.writernumber & "=" & Objrec ("ID") & "" & Objrec ("C_email")

You don't have to write Rnumber and ID, you just need to check the match. As long as you are satisfied with the work of the above code, you can record the "random" operation on demand. The recordset does not contain anything else, so you will soon be able to find the records you need so that the processing time is greatly reduced.

      1. Talk about random numbers again

Now that you are determined to squeeze the last drop of the random function, you may be able to take multiple random records at one time or to use a certain random range of records. By extending the standard random example above, you can use SQL to deal with both of these situations.

To take a few randomly selected records and store them in the same recordset, you can store three random numbers and then query the database for records that match those numbers:

sql = "SELECT * from Customers Where id =" & rnumber & "or id =" & RNumber2 & "   or id =" & RNu Mber3

If you want to select 10 records (perhaps a list of 10 links each time the page is loaded), you can use between or mathematical equations to select the first record and the appropriate number of incremental records. This can be done in several ways, but the Select statement only shows one possible (the ID here is an automatically generated number):

sql = "SELECT * from Customers Where ID between" & Rnumber & "and" & Rnumber & "+ 9"

Note: The above code is not intended to check for 9 concurrent records within the database.

Randomly read a number of records, tested

Access syntax: Select top * FROM table name ORDER by RND (ID) SQL Server:select top n * FROM table name ORDER by NEWID () mysqlelect * FROM table name or Der by Rand () Limit n

Access left connection syntax (recently developed to use left connection, Access Help nothing, no SQL instructions for access online, only own test, now write it down for later check)

Elect Table1.fd1,table1,fd2,table2.fd2 from table1 left joins Table2 on Table1.fd1,table2.fd1   where ...

Use SQL statements with ... Instead of a long string display

SQL database: Select Case when Len (field) >10 and left (field,10) + ' ... ' else field end as   news_name,news_id from TableName Access database: Select iif (len Field) >2,left (field,2) + ' ... ', field) from TableName;

      1. Conn.execute description

When you execute a SQL query statement, the recordset that the query gets is returned. To use:

Set object Variable name = Connection object. Execute ("SQL Query Language")

After the Execute method call, the Recordset object is automatically created, the query results are stored in the Record object, the recordset is assigned to the specified object by the set method, and later the object variable represents the Recordset object.

When you execute an operational language for SQL, there is no return for the recordset. The usage at this time is:

The Connection object. Execute "SQL Operational Statement" [, recordaffected][, Option]

· Recordaffected is optional, this out can place a variable, after the SQL statement executes, the number of records that are in effect is automatically saved to the variable. By accessing the variable, you know how many records of the SQL statement team have been manipulated.

· option, the value of which is typically adCmdText, which tells ADO that the first character after the Execute method should be interpreted as the command text. By specifying this parameter, you can make execution more efficient.

      1. · BeginTrans, RollbackTrans, CommitTrans methods

These three methods are the methods provided by the connection object for transaction processing. BeginTrans used to start a thing; RollbackTrans is used to rollback a transaction; CommitTrans is used to commit all transaction results, that is, the processing of the transaction is confirmed.

A transaction can treat a set of operations as a whole, and the transaction is successful only after all statements have been executed successfully, and if one of the statements fails, the entire process fails, and the status is restored to the previous state.

BeginTrans and CommitTrans are used to mark the start and end of a transaction, in which statements between these two are statements that are transacted. If the transaction is successful, it can be implemented by the error collection of the connection object, if the number of members of the error collection is not 0, then an error occurs and the transaction fails. Each Error object in the Error collection, which represents a fault message.

SQL that needs to be understood before an interview

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.