informatica:linux:bbdd:sqlite
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| informatica:linux:bbdd:sqlite [2012/09/07 10:57] – creado javi | informatica:linux:bbdd:sqlite [2015/08/20 13:37] (current) – javi | ||
|---|---|---|---|
| Line 10: | Line 10: | ||
| create table job(date integer, position text, area text, company text, primary key(position, | create table job(date integer, position text, area text, company text, primary key(position, | ||
| .exit | .exit | ||
| + | | ||
| + | * Volcar base de datos | ||
| + | |||
| + | sqlite3 / | ||
| + | | ||
| + | * Describir una tabla | ||
| + | |||
| + | sqlite3 / | ||
| + | |||
| + | * Crear base de datos desde archivo | ||
| + | |||
| + | sqlite3 / | ||
| + | |||
| + | < | ||
| + | DROP TABLE IF EXISTS RADIO; | ||
| + | |||
| + | CREATE TABLE RADIO ( | ||
| + | id TEXT NOT NULL PRIMARY KEY, | ||
| + | name TEXT NOT NULL, | ||
| + | description TEXT, | ||
| + | url TEXT NOT NULL, | ||
| + | longitude REAL, | ||
| + | latitude REAL, | ||
| + | altitude REAL | ||
| + | ); | ||
| + | |||
| + | INSERT INTO " | ||
| + | </ | ||
informatica/linux/bbdd/sqlite.1347015466.txt.gz · Last modified: (external edit)
