第48页
-
千万级大数据的Mysql数据库SQL语句优化
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:select id...
admin 2023.02.26 764浏览 0 -
MS sql server和mysql中update多条数据的例子
1. MS sql server中使用动态的表名:declare @tableName nvarchar(160) set @tableName = ‘t_...
kavin 2023.02.26 1162浏览 0 -
Oracle PL/SQL:CREATE TABLE statement: create a table with primary key.
CREATE TABLE statement can be used to create table objects in database. It is possible to add constraints like prima...
Molet 2023.02.26 905浏览 0 -
Oracle导入SQL脚本执行 scott 用户下的表删除了
执行 .sql 文件时,应在 sqlplus 或 cmd 中执行,速度比plsql 中的command window 中书许多, scott 用户下的表删除了 可以执行如下 @D:\app\Administrator\product...
kavin 2023.02.26 1150浏览 0 -
Oracle 使用pl/sql将表中的数据读出到文件中
(1)在服务器上创建文件路径及文件 [oracle@redhat errormsg]$ touch test01.txt (2)在数据库中创建路径及授权 (3)创建存储过程 CREATE OR REPLACE PROCEDURE ex...
gtxyzz 2023.02.26 821浏览 0