推荐 综合 人气 评论 点赞
数据库其他
千万级大数据的Mysql数据库SQL语句优化 mysql一千万条数据优化
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:select id from t where num is null可以在num上设置默认

0评论2023-02-10918

DB2死锁的解决过程全记录
这篇文章主要介绍了DB2死锁的解决过程全记录,本文造成死锁的是select语句,处理过程相当困难,需要的朋友可以参考下

0评论2015-06-30100

MS sql server和mysql中update多条数据的例子
1.MS sql server中使用动态的表名:declare @tableName nvarchar(160)set @tableName = 't_stat_all'declare @sql nvarchar(160)print @tableNameset @sql='select count(*) from '+@tableNameexec(@sql)2.mysql的例子1语句update (select sc,tos,sum(click)

0评论2023-02-10404

Oracle导入SQL脚本执行 scott 用户下的表删除了
执行 .sql 文件时,应在 sqlplus  或 cmd 中执行,速度比plsql 中的command window 中书许多, scott 用户下的表删除了 可以执行如下 @D:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\scott.sql 

0评论2023-02-10874

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 primary key ,foreign key while table creation.Primary key is the unique identifier for a row of data.One table cannot contain d

0评论2023-02-10483

« 上一页 37/37 下一页 »