码迷,mamicode.com
首页 >  
搜索关键字:show    ( 18849个结果
MySQL数据库操作3-数据表操作2-查看数据表结构
describe语句: 语法: describe 表名; 简化写法: desc 表名 注意 1.两种写法结果相同, 2.可以不使用分号结尾, 3.不支持多个表同时查询。 查询表创建的详细结构: 代码: show create table test_t; 结果: 'test_t', 'CREATE T...
分类:数据库   时间:2014-11-01 20:22:49    阅读次数:246
UVA 10163 Storage Keepers(两次DP)
UVA 10163 Storage Keepers(两次DP) http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1104 题意:        有n个仓库(最多100个),m个管理员(最多30个),每个管理员有一个能力值P(接下来的一行有m个数,表示每...
分类:其他好文   时间:2014-11-01 17:53:30    阅读次数:209
Luogu 考前模拟Round. 1
A.情书题目:http://www.luogu.org/problem/show?pid=2264赛中:sb题,直接暴力匹配就行了,注意一下读入和最后一句话的分句赛后:卧槽 怎么只有40B.小朋友的球题目:http://www.luogu.org/problem/show?pid=1655赛中:sb...
分类:其他好文   时间:2014-11-01 14:40:41    阅读次数:118
ios打包应用程序,生成ipa文件
假设我的程序调试好了,怎么才干发给别人用呢?正常情况下IPA文件是从Xcode的Organizer中输出的,可是我们没有证书,这样输出会产生错误。以下教你怎样生成ipa文件:1.到你当前project下--Products 右键 Show in Finder2.进入Finder下 选中你projec...
分类:移动开发   时间:2014-11-01 14:38:58    阅读次数:176
mysql表名忽略大小写
查看大小写区分 mysql> show variables like "%case%"; +------------------------+-------+ | Variable_name ? ? ? ? ?| Value | +------------------------+-------+ | lower_case_file_system | OFF ? ...
分类:数据库   时间:2014-10-31 23:48:07    阅读次数:442
show_space/get_alert_log/get_trace_file
1.get_alert_log 获取alert文件的路径和名称 set serveroutput on --设置输出,让sqlplus在屏幕上可以输出。(要加入到login.sql中!) create or replace procedure get_alert_log is alert_name ...
分类:其他好文   时间:2014-10-31 21:55:15    阅读次数:127
Oracle 11G 监控单张表的增删改操作
前言:    线上oracle数据库有张表的数据有些乱,根据应用db的log和应用的log也没有检查出来谁修改了,所以决定把这张单表做个详细的insert、update、delete监控。一:使用数据库自带的审计功能1,查看审计功能是否启动SQL> show parameter audit                                                       ...
分类:数据库   时间:2014-10-31 20:39:08    阅读次数:373
建索引sql
select * from op_breakrule where hphm='苏A2GD78'show index from op_car_owner;alter table op_car_owner add index index_chassisid(chassisid) ;drop index ...
分类:数据库   时间:2014-10-31 18:48:21    阅读次数:202
php实现设计模式之 状态模式
set(new offstate()); }}class offstate implements state{ public function show(){ echo '是关灯状态'; } public function handle($light){ $light->set(new ons...
分类:Web程序   时间:2014-10-31 13:23:09    阅读次数:252
获取表的下一个自增ID
"SHOW TABLE STATUS LIKE '表名'" 会获取到表的信息Array ( [0] => Array ( [Name] => uc_members [Engine] => MyISAM [Version] => 10 [Row_format] => Dynamic [Rows] =>...
分类:其他好文   时间:2014-10-31 13:21:33    阅读次数:136
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!