MySQL 数据库常用命令 1、MySQL常用命令 create database name; 创建数据库 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 describe tablename; 表的详细 ...
分类:
数据库 时间:
2016-04-07 18:31:02
阅读次数:
236
一、创建表 CREATE TABLE table_name( 属性名 数据类型, 属性名 数据类型, . . 属性名 数据类型); 二、查看表结构 1.查看表定义 DESCRIBE table_name; 2.查看表详细定义 SHOW CREATE TABLE table_name; 三、删除表 D ...
分类:
数据库 时间:
2016-04-05 15:49:25
阅读次数:
191
Description For an electronic mail application you are to describe the SMTP-based communication that takes place between pairs of MTAs. The sender's U ...
分类:
其他好文 时间:
2016-04-04 10:23:36
阅读次数:
202
A simple model for describing basic sources of possible performance problems
In this section we describe a simple model for describing basic sources of possible performance problems. The model is...
分类:
其他好文 时间:
2016-04-02 14:53:46
阅读次数:
221
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Example Given lists: [ 2->4->null, null, -1->null ] ...
分类:
其他好文 时间:
2016-03-31 09:31:51
阅读次数:
169
Oracle SQL 经典查询练手第三篇
本文分享的是Oracle SQL的经典查询第三篇,仅仅是作者自己的见解,如有问题,希望您给出建议或者方法。同时,欢迎广大读者们补充,如果您有经典的查询方式也可以拿出来我们共同分享,共同成长,共同进步。
本计算机上使用的是Oracle 11.2.0版本,使用scott用户登陆。使用的是系统自带的表。
表结构:
describe employees;
describe departments;
describe locations;
select
* from ...
分类:
数据库 时间:
2016-03-30 13:21:10
阅读次数:
1482
editor:YeungChi date:2016/3/29 describe:小票打印机乱码问题 文章内容:一、参数解释 二、串口连接打印机设置案例 串口是一种非常通用的设备通信的协议; 一、参数解释 波特率 波特率 这是一个衡量符号传输速率的参数。它表示每秒钟传送的符号的个数。例如300波特表示 ...
分类:
其他好文 时间:
2016-03-29 21:04:59
阅读次数:
534
mysql -h localhost(or ID) -u root -p show databases; create database <数据库名>; drop database <数据库名>; use pythontest; describe tb01; create table tb01(id ...
分类:
数据库 时间:
2016-03-26 13:56:03
阅读次数:
170
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Subscribe to see which companies asked this questio
分类:
其他好文 时间:
2016-03-18 21:46:29
阅读次数:
208
All the two important problem that the EM try to describe and explain are propogation and radiation of EM wave, on the basics of Maxwell Equations. So...
分类:
其他好文 时间:
2016-03-16 07:04:10
阅读次数:
225