Content Explore

OReilly - SQL Cookbook - 数据库用例代码(PostgreSQL)

Published : 2008-11-12 Categories : Cookbook Tags : SQL Cookbook OReilly Structure Case Data
--
-- PostgreSQL 8.*
--
SET client_encoding = 'UTF8';
--
-- table emp
--
CREATE TABLE
emp (
EMPNO bi...

OReilly - SQL Cookbook - 数据库用例代码(MySQL)

Published : 2008-11-11 Categories : Cookbook Tags : SQL Cookbook OReilly Structure Case Data
--
-- MySQL 5.0.*
--
-- Table structure for table emp
--
CREATE TABLE IF NOT EXISTS emp (
EMPNO int(...

Ubuntu 一些小技巧

Published : 2008-04-17 Categories : GNU/Linux Tags : Ubuntu Linux Cookbook
安装
* 查看软件xxx安装内容
dpkg -L xxx
* 查找软件
apt-cache search 正则表达式
* 查找文件属于哪个包
dpkg -S filename
apt-file sea...