Tags: process variable assignment multiple meanings have a counter target based on nullI. T-SQL overviewThe programming language that SQL Server uses to manipulate the database is Transaction-sql, or T-SQL. T-SQL differs from PL/SQL
A few questions about SQL (SQL advanced) and SQL advanced
When we get a question, we are not eager to answer the question. It will not be worth the candle, but to analyze the ideas, methods, and objectives, we also need to think about whether there are simple methods or general methods to achieve the same effect. In fact, this kind of inertial thinking was introd
like '% @ str %'Create an encrypted stored procedure or function WITH the with encryption parameter before theYou can use sp_decrypt to decrypt encrypted stored procedures and functions.10. View user and process information in the databaseSp_whoView information about active users and processes in the SQL Server databaseSp_who 'active'View the locks in the SQL Server databaseSp_lockProcess No. 1--50 is used
Often develop ASP but for the meticulous statement, the truth is not very clear, here a simple introduction.
Under normal circumstances
Read the data with Rs.Open sql,conn,1,1
Modifying data: Rs.Open sql,conn,1,3
Delete data: Directly to Conn.execute ("Delete * from new where id=1").
The Rs.Open syntax is as follows: Rs. Open Source,activeconnection,cursortype,locktype
Source is a
Tags: ash text results SQL tuning SRC completion need to end TunA few days ago, a user developed QQ to find me, as follows:The free Dolphin. 16:12:01The island owner, my SQL can not find the results, could you help me see?Orchid Island Main 16:12:10How long is the result?The Free Dolphin 16:12:17How long has not produced the result, has not seen the result.Orchid Island Main 16:12:26Oh, good.Orchid Island M
SQL Server parallel operation optimization prevents parallel operations from being restrained and affects SQL Execution efficiency and SQL Execution Efficiency
Why should I also say SQL Server Parallelism:
I have written many articles about SQL Server parallelism in the gard
Specify a subquery to test whether the row exists.
Transact-SQL syntax conventions
Syntax
Exists subquery
Parameters
Subquery
Restricted select statements. The compute clause and the into keyword are not allowed. For more information, see "select (TRANSACT-SQL)" for information on subqueries.
Result type
I often develop asp, but I am not very clear about the detailed statements. Here is a brief introduction.
Generally
Rs. open SQL, conn, are used to read data.
Modify data: rs. open SQL, conn, 1, 3
Delete data: You can directly delete data such as conn.exe cute ("delete * from new where id = 1.
Rs. Open Syntax: rs. Open Source, ActiveConnection, CursorType, LockType
Source is an
Label: conn =mysqljdbcutils.getconnection (); Statement PS=conn.createstatement (); Ps.addbatch ("Truncate Qb_showcount_asite_copy");
Ps.executebatch (); String Srcsql= "SELECT Convert" (Unhex (Hex (CONVERT (Community using latin1)) using UTF8) as Community, PID from Qb_menbercmmsets_list whe Re site=7 "; stmt=conn.preparestatement (Srcsql); RS=Stmt.executequery (); Above is the empty command that executes before the following SQL statement executes//
SQLServer how to use the T-SQL command to query a database in which tables, convenient table operations, need friends can refer to the next
SQLServer how to use the T-SQL command to query a database in which tables, convenient table operations, need friends can refer to the next
1. query all tables in SQL:
Select TABLE_NAME FROM database name. INFORMATION_SCHE
SQL Server database management common SQL and T-SQL statements
1. view the database version
Select @ version
2. view the operating system parameters of the machine where the database is located
Exec master .. xp_msver
3. view database startup parameters
Sp_configure
4. view the database startup time
Select convert (varchar (30), login_time, 120) from master .. sy
SQL connections (2) -- SQL Reading Notes, SQL Reading Notes
Chapter 1 in SQL Learning Guide
1.4 outer connections
In multi-table join, the connection condition may not match all rows in the table. For example, when the account table is connected to the customer table, the value of the cust_id column in the account tabl
SQL UNION operatorThe UNION operator is used to combine the result set of two or more SELECT statements.Note that the SELECT statement inside the UNION must have the same number of columns. The column must also have a similar data type. Also, the order of the columns in each SELECT statement must be the same.SQL UNION SyntaxSELECT column_name (s) from Table_name1unionselect column_name (s) from table_name2Note: By default, the UNION operator chooses a
database parameterized ModeThere are two ways to parameterize a database, simple and mandatory (forced), and the default parameterization is "simple" by default.In simple mode, if the SQL is sent every time, unless it is exactly the same, it will be recompiled (special circumstances will be automatically parameterized, it is the focus of this article)The mandatory mode is to force the Adhoc SQL to be parame
Static SQL, dynamic SQL, and static SQL
Static
1. Common MemberCommon members belong to objects.Call with object
2. Static membersStatic members belong to the classCalled by Class Name
Class FenBi{Public int length; // common memberPublic string color ;//}
Static keywords
Static methods cannot contain common members.
The common method can contain static members.
1. query all tables in SQL:
Select TABLE_NAME FROM database name. INFORMATION_SCHEMA.TABLES Where TABLE_TYPE = 'base table' after execution, you can see the names of all tables created by yourself in the database.
2. query all tables and columns in SQL:
Select dbo. sysobjects. name as Table_name, dbo. syscolumns. name AS Column_name FROM dbo. syscolumns inner join dbo. sysobjects ON dbo. syscolumns. id
After a DML statement is executed, the results of the DML statement are stored in four cursor attributes, which are used to controlProgramProcess or understand the program status. When running a DML statement, PL/SQL opens a built-in cursor and processes the result. The cursor is an area in the memory that maintains the query result. The cursor is opened when running the DML statement and closed after completion. Only
About T-SQL and SQL Enterprise Manager, SQL Enterprise
After reading the database video, we often use two methods in the video. One is the SQL Enterprise Manager, and the other is the T-SQL (Tansact-SQL ). For the first method, it
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.