「Sqlite/テーブル」の版間の差分
提供: 初心者エンジニアの簡易メモ
| 行8: | 行8: | ||
> .tables | > .tables | ||
users | users | ||
| + | |||
| + | ==テーブル定義一覧== | ||
| + | > .schema | ||
| + | CREATE TABLE users(id, name); | ||
| + | CREATE TABLE users2(id integer, name text); | ||
2020年2月26日 (水) 17:13時点における版
テーブル作成
create table users(id, name);
テーブル作成カラム付き
create table users2(id integer, name text);
テーブル一覧
> .tables users
テーブル定義一覧
> .schema CREATE TABLE users(id, name); CREATE TABLE users2(id integer, name text);
