0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ターミナル 立ち上げ 自分用

Last updated at Posted at 2021-05-19

https://techacademy.jp/magazine/5155
基本操作

最初に入力・zshにする

touch ~/.zshrc
echo 'export PATH=$PATH:/opt/homebrew/bin' >> ~/.zshrc
source ~/.zshrc

バージョン確認
brew --version

サーバー起動
mysql.server start

これも必要
mysql -uroot

文字通り
show databases;
create database tech_db;

テーブル作成/名前・id・住所など親要素
create table テーブル名 (id int,name varchar(10),adress varchar(10), age int);

テーブル内に入力子要素
insert テーブル名 values (1,'タロウ','東京都',29);

テーブルの中身を見る
select * from テーブル名;

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?