码迷,mamicode.com
首页 >  
搜索关键字:describe    ( 1114个结果
leetcode-longest palindromic substring-by 1337c0d3r
Given a string S, find the longest palindromic substring in S.Note:This is Part II of the article:Longest Palindromic Substring. Here, we describe an ...
分类:其他好文   时间:2014-11-12 21:05:22    阅读次数:345
Ruby之Rspec的报错解决
#enconding:utf-8 require 'selenium-webdriver' require 'rspec' describe "baidu main page" do it "should have 百度一下 button on the baidu main page"do dr = Selenium::WebDriver.for:ie url = 'www.baid...
分类:其他好文   时间:2014-11-10 23:21:48    阅读次数:1334
mysql查看表结构命令
mysql查看表结构命令,如下: desc 表名; show columns from 表名; describe 表名; show create table 表名; use information_schema select * from columns where table_name=‘表名‘; 顺便记下: show databases...
分类:数据库   时间:2014-11-05 13:14:05    阅读次数:203
mysql 常用简单的几个命令
1.进入 mysql -u root -p 2.创建数据库 create database 数据库名称; 3.切换数据库 use 数据库名称;4.查看当前数据库 select database();5.导入sql脚本 source xxx.sql;6.显示数据表的结构,describe 表名...
分类:数据库   时间:2014-11-04 01:25:50    阅读次数:201
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
A Tour of Go Errors
An error is anything that can describe itself as an error string. The idea is captured by the predefined, built-in interface type,error, with its sing...
分类:其他好文   时间:2014-10-28 21:36:35    阅读次数:160
Naming variables
Variables are a fundamental building block of all programming languages. In this lesson, I'll describe briefly what a variable is, explain the basic r...
分类:其他好文   时间:2014-10-28 09:21:40    阅读次数:253
SQL keys, MUL vs PRI vs UNI
摘自:http://stackoverflow.com/questions/5317889/sql-keys-mul-vs-pri-vs-uni/15268888#15268888 SQL keys, MUL vs PRI vs UNI DESCRIBE?<table>; This is acutally a shortcut for: SHOW?COLUMNS?FROM?<...
分类:数据库   时间:2014-10-27 19:53:10    阅读次数:189
port forwarding in yosemite, a way to replace ipfw
Mac OS Yosemite disabled ipfw command, we need use pf rule to work around it. This article is a manual to describe how to address this issue....
分类:其他好文   时间:2014-10-25 07:06:51    阅读次数:234
VS2010连接MySQL数据库
1、下载MySQL软件,并下载Connector/Net 驱动,安装完成后,打开MySQL Command Line。   2、输入安装软件时设置的密码,就会进入编辑界面。 3、查看包含的数据库,可以输入show databases; 4、输入 use mt ;选择mt数据库,输入show tables;显示该数据库中的表。 5、输入describe tb_sta...
分类:数据库   时间:2014-10-24 22:24:21    阅读次数:444
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!