码迷,mamicode.com
首页 >  
搜索关键字:describe    ( 1114个结果
基于CentOS的Mysql学习补充二--使用Shell创建数据库
关于使用基于命令使用mysql数据库的方法可见文章《基于CentOS的Mysql的使用说明》,本文只要介绍如何使用Shell脚本来创建我们想要的数据库,下面给出我创建数据库的Shell脚本,基本也就是将mysql的一些命令放在shell脚本里面而已。 #!/bin/bash #Author: chisj #Time: 2015.7.22 #Describe: Create Database...
分类:数据库   时间:2015-07-22 13:04:49    阅读次数:186
Merge K Sorted Lists
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.Analyse: Similiar to merge sort algorithm. Reuse the c...
分类:其他好文   时间:2015-07-21 23:33:20    阅读次数:188
使用SQL*PLUS命令
一、使用DESCRIBE命令查看表结构 表结构包括一个数据库表的名称、有哪些字段以及哪些字段是主键等信息。下面使用DESC命令查看用户下表结构:二、执行SQL脚本 如果需要些很多命令,这时,执行SQL脚本文件可以提高工作效率。 使用@执行SQL脚本的语法格式如下: SQL> @full_pa...
分类:数据库   时间:2015-07-20 21:04:10    阅读次数:129
Understanding postgresql.conf : log*
After loooong pause, adding next (well, second) post to the “series“. This time, I'd like to describe how logging works. And I don't mean binary loggi...
分类:数据库   时间:2015-07-20 09:05:20    阅读次数:201
20150719 Navy blue is my color. You will describe the way people look
fantastic:We had a fantastic trip to Korea.You look fantastic in that blouse. This building is famous for its attractive designsattractive:I think she...
分类:其他好文   时间:2015-07-19 13:20:29    阅读次数:90
#23 Merge k Sorted Lists
题目链接:https://leetcode.com/problems/merge-k-sorted-lists/ Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. /** * Definition for singly-l...
分类:其他好文   时间:2015-07-19 10:12:41    阅读次数:114
HashMap存储数据赋值javabean简单示例
package com.shb.web;import java.util.HashMap;import java.util.Iterator;import java.util.Map;/*** @Describe HashMap存储数据,赋值javabean.* @author xiaoshi* @...
分类:编程语言   时间:2015-07-17 13:53:14    阅读次数:314
收集的MySQL的面试题分享给大家
1、如何登陆mysql数据库mysql -u username -p2、如何开启/关闭mysql服务service mysql start/stop3、查看mysql的状态service mysql status4、如何显示数所有数据库show databases5、如何获取表内所有字段对象的名称和类型describe table_name;6、MYSQL支持事务吗?在缺省模式下,MYSQL是aut...
分类:数据库   时间:2015-07-15 22:46:27    阅读次数:254
A Neural Network in 11 lines of Python
A Neural Network in 11 lines of PythonA bare bones neural network implementation to describe the inner workings of backpropagation.Posted by iamtrask ...
分类:编程语言   时间:2015-07-15 20:35:33    阅读次数:207
Hive命令行常用操作(数据库操作,表操作)
数据库操作查看所有的数据库 hive> show databases ; 使用数据库default hive> use default; 查看数据库信息 hive > describe database default; OK db_name comment location owner_name owner_type parameters...
分类:数据库   时间:2015-07-14 17:55:48    阅读次数:182
1114条   上一页 1 ... 89 90 91 92 93 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!