1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
#(22) データベース構造の操作 -- (1)データベースの追加 create databese show databases; create database book_store; show databases;#確認 -- (2)テーブルの追加 use book_store; show tables;#まだテーブルはなにもない create table books(id int not null auto_increment primary key,title varchar(255) not null); show tables;#booksテーブルが追加された show columns from books;#テーブル構造を確認 select * from books;#中身はまだなにもない -- (3)テーブルの列の追加 alter table add / price列 use book_store; show columns from books; alter table books add price int after id; show columns from books; -- (4)テーブルの列の変更 alter table change / booksテーブルのpriceをunit_priceへ変更 show columns from books; alter table books change price unit_price int; show columns from books; -- (3)テーブルの列の削除 alter tabel drop / unit_price show columns from books; alter table books drop unit_price; show columns from books; -- (4)テーブルの削除 drop table / booksテーブル show tables; drop table books; show tables;#確認 -- (5)データベースの削除 drop database / book_sore show databases; drop database book_store; show databases;#確認 |
The following two tabs change content below.
Keita N
最新記事 by Keita N (全て見る)
- 2024/1/13 ビットコインETFの取引開始:新たな時代の幕開け - 2024年1月13日
- 2024/1/5 日本ビジネスにおける変革の必要性とその方向性 - 2024年1月6日
- 2024/1/3 アメリカ債権ETFの見通しと最新動向 - 2024年1月3日