current location:Home > Technical Articles > Database > SQL
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- What is the usage of exists in oracle?
- Usage of exists in oracle: exists is followed by a subquery, the purpose is to check whether the result of the subquery is true. If the subquery is true, the outer sql statement is executed. exists does not return data, only true or false.
- SQL 8191 2020-05-09 13:17:15
-
- What is the full Chinese name of sql?
- The full Chinese name of sql is Structured Query Language. It is a special-purpose programming language, a database query and programming language, used to access data and query, update and manage relational database systems.
- SQL 21207 2020-05-09 10:44:15
-
- SQL database add, delete, modify, query syntax
- SQL database add, delete, modify and query syntax: 1. [SELECT * FROM table_name]; 2. [INSERT INTO table_name VALUES (value1, value2, value3,...)].
- SQL 8527 2020-05-06 13:34:58
-
- What is wrong with the statements about sql statements?
- Regarding the SQL statement, the error is that "CREATE statement is used to create a table structure and append new records" because the function of the "CREATE" statement is to create a table structure and cannot append new records or append new records. The "INSERT" statement can be used.
- SQL 9632 2020-04-30 10:17:58
-
- Usage of listagg function
- listagg is Oracle's column-to-row function. Its basic usage is "LISTAGG(XXX,XXX) WITHIN GROUP(ORDER BY XXX)", which means splicing together a field of each "Group" through the "Group by" statement.
- SQL 32126 2020-05-06 15:21:07
-
- Oracle method to intercept the first digits of a string
- Oracle can intercept the first few digits of a string through the substr function. The syntax of the substr function is "substr(string,start,length)". Its parameter string represents the specified string to be intercepted. The parameter start specifies where in the string start.
- SQL 50810 2020-04-27 16:37:29
-
- sqlserver2017 installation tutorial
- SQLserver2017 installation tutorial: First load the SQL2017 database image; then select "Installation -> New SQL Server Independent Installation"; then select "Developer Development Edition" and turn off the firewall; finally select the specific required functions and change the installation location.
- SQL 7740 2020-04-27 16:33:01
-
- How to check sa password in sqlserver
- How to check the sa password in sqlserver: first log in to the system using windows identity; then right-click on the service name and select properties; then modify the password in the corresponding position; finally change to sa login and enter the new modified password.
- SQL 30150 2020-03-23 09:13:46
-
- What type of data model does sql server belong to?
- SQL Server is a relational data model; SQL Server is a comprehensive database platform that uses integrated business intelligence tools to provide enterprise-level data management; SQL Server database engine provides a more secure and reliable solution for relational data and structured data. storage function.
- SQL 15938 2020-03-23 09:08:50
-
- Which data manipulation statement in SQL does not include?
- Data operation statements in sql do not include the "CHANGE" statement. "CHANGE" is used to rename fields and cannot modify field types and constraints; data operation statements in sql include "INSERT", "DELETE", and "UPDATE".
- SQL 14393 2020-03-14 10:26:46
-
- How to use exists in oracle
- The usage of exists in Oracle: 1. exists is followed by a subquery; 2. The function of exists is to check whether the result of the subquery is true. If it is true, the outer SQL statement is executed; 3. If the subquery is false, then Return false.
- SQL 14406 2020-03-06 17:56:03
-
- What is the Oracle table creation statement?
- Oracle table creation statement is CREATE TABLE tablename(column_name datatype). Where tablename is the name of the table to be created, column_name is the field name, and datatype is the field type.
- SQL 16474 2020-03-02 15:44:20
-
- How to modify table name in oracle
- How to modify the table name in Oracle: 1. Use alter table oldname rename to newname to modify the table name; 2. Use rename oldname to newname. This method can only modify tables under your own schema, etc.
- SQL 7175 2020-03-02 15:37:18
-
- How to delete table data in oracle
- How to delete table data in Oracle: 1. Use "truncate table table name" to delete all data in the table, which is fast, but cannot be deleted according to conditions; 2. Use "delete from table name where condition" to delete table data, which can be deleted according to conditions. , but slow.
- SQL 21522 2020-02-29 11:58:25
-
- How to modify field length in oracle
- How Oracle modifies the field length: Use the modify keyword to modify the field length. The format is: "alter table table name modify field name data type (length)".
- SQL 38796 2020-02-29 11:33:25