SQL expert: Introduction to exquisite SQL statements _ MySQL

Source: Internet
Author: User
Note: copy a table (copy only structure, source table name: a new table name: B) SQL: select * distinct bfromawhere11 description: copy a table (copy data, source table name: a target table name: B) SQL: insertintob (a, B, c) selectd, e, ffromb; description: displays articles, submissions, and last response time SQL: selecta. title,. username, B. add description: copy a table (only copy structure, source table name: a new table name: B)

SQL: select * into B from a where 1 <> 1

Description: copy a table (copy data, source table name: a target table name: B)

SQL: insert into B (a, B, c) select d, e, f from B;

Description: displays the article, submitter, and last reply time.

SQL: select a. title, a. username, B. adddate from table a, (select max (adddate) adddate from table where table. title = a. title) B

Description: external join query (table name 1: table a name 2: B)

SQL: select a. a, a. B, a. c, B. c, B. d, B. f from a left out join B ON a. a = B. c

Note: five minutes in advance of the schedule

SQL: select * from schedule where datediff ('Minute ', f start time, getdate ()> 5

Note: Two associated tables are used to delete information that is already unavailable to the primary table in the secondary table.

SQL:

Delete from info where not exists (select * from infobz where info. infid = infobz. infid)

Note :--

SQL:

Select. NUM,. NAME, B. UPD_DATE, B. PREV_UPD_DATE FROM TABLE1, (select x. NUM, X. UPD_DATE, Y. UPD_DATE PREV_UPD_DATE FROM (select num, UPD_DATE, INBOUND_QTY, STOCK_ONHAND FROM TABLE2 WHERE TO_CHAR (UPD_DATE, 'yyyy/MM') = TO_CHAR (SYSDATE, 'yyyy/MM') X, (select num, UPD_DATE, STOCK_ONHAND FROM TABLE2 WHERE TO_CHAR (UPD_DATE, 'yyyy/MM') = TO_CHAR (TO_DATE (TO_CHAR (SYSDATE, 'yyyy/MM ') interval between '/01', 'yyyy/MM/DD')-1, 'yyyy/MM') Y, where x. NUM = Y. NUM () and x. INBOUND_QTY NVL (Y. STOCK_ONHAND, 0) <> X. STOCK_ONHAND) B WHERE. NUM = B. NUM

Note :--

SQL:

Select * from studentinfo where not exists (select * from student where studentinfo. id = student. id) and department name = '"& strdepartmentname &"' and major name = '"& strinclusionname &" 'Order by gender, student source, total score of the college entrance examination

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.