码迷,mamicode.com
首页 >  
搜索关键字:describe    ( 1114个结果
rtsp报文详尽讲解的pdf
RCTG005_RTSP-Streaming-with-RTP-and-RTCP_1.0.2.pdf 百度网盘\\RCTG005_RTSP-Streaming-with-RTP-and-RTCP_1.0.2.pdf 比如,我想知道DESCRIBE的响应报文里,“a=rtpmap”字样开头的一行里面, ...
分类:其他好文   时间:2016-07-15 19:51:30    阅读次数:303
How to evaluate a transimpedance amplifier (part 1)
In this blog, I want take a different approach and describe the technical challenge encountered while bench characterizing the OPA857, a dedicatedtran ...
分类:其他好文   时间:2016-07-14 19:09:14    阅读次数:214
Hive常用的SQL命令操作
Hive提供了很多的函数,可以在命令行下show functions罗列所有的函数,你会发现这些函数名与mysql的很相近,绝大多数相同的,可通过describe function functionName 查看函数使用方法。 hive支持的数据类型很简单就INT(4 byte integer),B ...
分类:数据库   时间:2016-07-08 16:35:36    阅读次数:255
TIP协议
1. TIP是什么? CISCO给TIP的定义如下: The TIP protocol specifications describe how to multiplex multiple screens, multiple audio streams, as well as an auxiliary ...
分类:其他好文   时间:2016-07-08 15:04:43    阅读次数:327
【leetcode】23. Merge k Sorted Lists
题目描述: Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. 解题分析: 解题思路很简单,就是先两两排序,不断减小链表数量,最后将所有数组织成一个有序链 ...
分类:其他好文   时间:2016-07-05 00:59:00    阅读次数:358
mysql 命令行常用命令
1、显示数据库列表。 show databases; 2、显示库中的数据表: use mysql; show tables; 3、显示数据表的结构: describe 表名; 4、建库: create database 库名; 5、建表: use 库名; create table 表名 (字段设定列 ...
分类:数据库   时间:2016-07-02 11:49:50    阅读次数:167
sql语句对数据库调优常用
DESCRIBE table_name ; 输出表结构 SHOW INDEX FROM table_name ; 输出表的索引 CREATE INDEX index_name ON table_name ( column ) ; 添加普通索引 ALTER TABLE table_name DROP ...
分类:数据库   时间:2016-06-25 22:53:48    阅读次数:196
mysql查看表结构命令
mysql查看表结构命令 mysql查看表结构命令,如下:desc 表名;show columns from 表名;describe 表名;show create table 表名;use information_schemaselect * from columns where table_nam ...
分类:数据库   时间:2016-06-22 18:47:11    阅读次数:215
Tab stop in Microsoft Word
Keywords: Office Word Tab stop A tab stop is a term used to describe the location the cursor stops after the tab key is pressed. Tab stops are used in ...
分类:其他好文   时间:2016-06-19 14:12:00    阅读次数:256
Hbase常用命令
Hbase Shell 常用命令 1.hbase shell 进入hbase 2.list 查看表 3.创建一个表member(f1为列族) create 'member', 'f1' 4.查看表描述 describe 'member' 5.scan浏览表中数据 scan 'member' 6.删除 ...
分类:其他好文   时间:2016-06-17 19:20:13    阅读次数:114
1114条   上一页 1 ... 77 78 79 80 81 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!