home / testdb / students

students

Table actions Table actions
  • Edit table schema

9 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: age, gender, class_name

id ▼ name age gender class_name score
1 张三 18 男 高三(1)班 92.5
2 李四 17 女 高三(2)班 88.0
3 王五 19 男 高三(1)班 76.5
4 赵六 18 女 高三(3)班 95.0
5 孙七 17 男 高三(2)班 61.5
6 周八 18 女 高三(1)班 83.5
7 吴九 19 男 高三(3)班 45.0
8 郑十 17 女 高三(2)班 77.0
9 宝宝 12 男 小学 22.0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE students (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    name TEXT NOT NULL,
    age INTEGER,
    gender TEXT,
    class_name TEXT,
    score REAL
);
Powered by Datasette · Queries took 1.2ms