), variable length, can hold photos, files, etc.
int, integer field. Example: Userage int
float, floating-point data is approximate. Example: Userresults float, the approximate numeric data type used to represent floating-point numeric data.
datetime, Date type. Example: Createdatetime datetime
Bit, Boolean type. Can be set to True is male, false is schoolgirl
If the content is very much, indeterminate length (such as article), can be used: nvarchar (max) 6. Save the tabl
$ SQL = "select count (qid) from test_querys where istested = 1And qid Qid from $ left_cr where issubmit = 1 and qid $ SQL = "selectCount (A. qid) from test_querysA left join (select qid from $ left_cr where issubmit = 1 and rankval = 1 and qid
1. The first query takes 2.9 s, and the second query takes 0.2 s! Use in
1T-SQL Simple query statement2 3 Simple query:4 51.The simplest query (check all data)6SELECT * from table name; NOTE: *represents all Columns7SELECT *From info8 92.querying a specified columnTenSelect Code,name from Info One A3.Modify the column name of the result set -Select Code as' Code ', name asNameFrom info -
(1) retrieve all rows and columns from the table
Problem
View All data in a table.
Solution
Use the SELECT statement for the table and the special character "*".
select * from emp
Discussion
The "*" symbol in SQL has special significance. You can use this function to return each column in a specified table. Because there is no WHERE clause, each row in the table is returned. Another alternative is to list each column separately.
select empno,ename,job
Tags: Scroll method prepare win section data body multiple ICAThe most obvious feature of SQL differs from other programming languages is the order in which the code is processed. In a large number programming language, code is processed in encoded order, but in the SQL language, the first processed clause is the FROM clause, although the SELECT statement first appears, but is almost always finally processe
SQL query (Note 2--entity query)Second, the entity queryIf the query returns all of the data columns for a data table, and the data table has a corresponding persisted class map, we convert the query results into entity queries. You can use the multiple overloaded addentity
Label:The first is the problem of fuzzy query, I started with the following conditions: SELECT * from the user where name like '% #value #% '. But how can not, as if also reported wrong. Later on the internet found a solution, is to use $ to replace the # number.1> write: Like '% $value $% ' can be,2> also found another method, but that method I tried for a long time, is not, the method is: like '% ' | | #value # | | '% ', the
subqueries, multiple table queries, federated queriesThese three concepts are interpreted slightly differently in different versions of SQL, roughly as follows:
Join connectionCan look at the relevant SQL information, or buy a book of SQL
1, such as: SELECT * from TAB1 where ID in (SELECT id form tab2 where ...)The query
SQL query begins with a specified character SQL query statementLike a lot of time we need to be in the MySQL tutorial, MSSQL to query eligible data, today I came across a query with "Deng" all the conditions of the beginning of th
[Name],subject,score Here for a good understanding only one column to get the following results With the example of the language accomplishment line train, it is easy to add the other two columns, Select [Name],Chinese =caseWhen subject= ' language ' then score else 0EndMathematics =caseWhen subject= ' math ' then score else 0EndForeign Language =caseWhen subject= ' foreign language ' then score else 0EndFrom StudentscoreGroup BY [Name],subject,score The following is the result of the
scroll lock depends on the cursor concurrency option and the lock prompt in the SELECT statement of the cursor. Optimistic read-only value
* Specifying the nolock prompt will make the table with the specified prompt read-only in the cursor.
16. Use profiler to track the query, obtain the time required for the query, and locate the
When converting Oracle queries to SQL queries, you need to pay attention to a lot of issues. The following gives you a detailed analysis of the number trade-offs in converting Oracle queries to SQL queries for your reference.
Number trade-offs
Oracle Database has a TRUNC function, which returns n digits of the m-bit decimal number. If m is omitted, n is 0 digits. The m value can be negative, indicating th
cursor concurrency option and the lock prompt in the SELECT statement of the cursor. Optimistic read-only value
* Specifying the nolock prompt will make the table with the specified prompt read-only in the cursor.
16. Use profiler to track the query, obtain the time required for the query, and locate the SQL probl
When we query information in the database, we often need to query the information based on the conditions entered by the user. Some conditions are available, but some conditions are unavailable. Therefore, we need to assemble the condition statements. The following method is compiled based on this situation, hoping to help the reader:
String SQL = "select * fr
(SelectMAXfromorderbydesc; Meaning: First check out the tallest height, exclude the height, then sort the data (descending) and query out the current first piece of data. 2, the query may be the same as the highest height value of the second place, that is, if the height is 182 Several people are also 182 height, The second place is still Select Top 1 * from (selecttop2fromorderbydescOrder by
Query, delete, insert, query, sort SQL statementHere we provide query, delete, insert, query, sort totals sum average max minimum SQL statement OH.Selection: SELECT * FROM table1 whereInserting: INSERT INTO table1 (field1,field2)
Label:In SQL Server, each query will find the shortest path to achieve its own goal. If the database accepts only one connection at a time, only one query is executed. Then the query is, of course, M.F.B. s to complete the work. For most databases, however, multiple queries need to be processed at the same time. Instea
SQL statement Optimization-query different rows of the two tables NOT IN, NOT EXISTS, Join query Left Join, existsleft
In actual development, we often need to compare the differences between two or more tables and compare the data that is the same and the data is different. At this time, we can use the following three methods: 1. IN or not in, 2. EXIST or NOTEXIS
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.