欢迎跟贴! V$datafile 数据库使用的数据文件信息 V$librarycache 共享池中sql语句的管理信息 V$lock 锁的相关信息 V$log 从控制文件中提取有关重做日志组的信息 V$logfile 日志组文件的相关信息 V$parameter...
各位,我想在FREEBSD 4.7中使用U盘,怎么加载? 软盘加载是:mount -t msdos /dev/fd0 /mnt 那我的32M的U盘怎么做呢?我是用VMWARE装的系统......
使用索引是提高select操作性能的最佳途径 创建索引: create index username on user(user_name); 查看索引: show index from table_name; 删除索引: drop index index_name on table_name 视图是一中虚拟存在的表,并不在数据库中实际存在 创建视图: create or replace view selectuser as select user_name from user where user_id=1; mysql中定义的视图有限制:在from关键字后面不能包含子查询 以下视图不能更新: 包含聚合函数 cr...