質問編集履歴

6

2022/12/07 06:24

投稿

yuyu4100
yuyu4100

スコア43

test CHANGED
File without changes
test CHANGED
@@ -21,6 +21,9 @@
21
21
 
22
22
  %create database TEST1.db
23
23
 
24
+ ### 試したこと
25
+ pip install pysqlite3 というのコマンドを実行しましたが治りませんでした。
26
+
24
27
  ### 環境
25
28
  anaconda 4.12.0
26
29
  python 3.9.12

5

修正

2022/12/07 06:19

投稿

yuyu4100
yuyu4100

スコア43

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,11 @@
3
3
  SQLの勉強中です
4
4
  pythonを使いJupiter notebook上でデータベースを作ろうと思いまず%createを使用したらエラーで作ることができなくなってしまいました.
5
5
  SQLiteというものを使おうと思っています。
6
+
7
+ これを実行出来たらこのようなコードを書く予定です
8
+ create table meibo
9
+ (id int primary key, name varchar(20))
10
+ select * from meibo;
6
11
 
7
12
  ### 実現したいこと
8
13
 

4

##

2022/12/07 06:16

投稿

yuyu4100
yuyu4100

スコア43

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  %create database TEST1.db
18
18
 
19
- ###環境
19
+ ### 環境
20
20
  anaconda 4.12.0
21
21
  python 3.9.12
22
22
  jupyter notebook 6.4.8

3

####

2022/12/07 06:16

投稿

yuyu4100
yuyu4100

スコア43

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  %create database TEST1.db
18
18
 
19
- 環境
19
+ ###環境
20
20
  anaconda 4.12.0
21
21
  python 3.9.12
22
22
  jupyter notebook 6.4.8

2

修正

2022/12/07 06:16

投稿

yuyu4100
yuyu4100

スコア43

test CHANGED
File without changes
test CHANGED
@@ -20,6 +20,6 @@
20
20
  anaconda 4.12.0
21
21
  python 3.9.12
22
22
  jupyter notebook 6.4.8
23
+ windows11
23
24
 
24
25
 
25
-

1

前提情報を追加しました。環境を追加しました。

2022/12/07 06:13

投稿

yuyu4100
yuyu4100

スコア43

test CHANGED
File without changes
test CHANGED
@@ -1,7 +1,8 @@
1
1
  ### 前提
2
2
 
3
3
  SQLの勉強中です
4
- pythonを使いJupiter notebook上でデータベースを作ろうと思いまず%createを使用したらエラーで作ることができなくなってしまいました
4
+ pythonを使いJupiter notebook上でデータベースを作ろうと思いまず%createを使用したらエラーで作ることができなくなってしまいました.
5
+ SQLiteというものを使おうと思っています。
5
6
 
6
7
  ### 実現したいこと
7
8
 
@@ -15,4 +16,10 @@
15
16
 
16
17
  %create database TEST1.db
17
18
 
19
+ 環境
20
+ anaconda 4.12.0
21
+ python 3.9.12
22
+ jupyter notebook 6.4.8
18
23
 
24
+
25
+