LoginSignup
0
1

More than 5 years have passed since last update.

AccessのクエリをSQLで作っていく

Last updated at Posted at 2017-01-11

★データを抽出する

テーブルの項目すべて

select  * from テーブル名;

テーブル項目すべてのうち、条件に合致するものだけ

select  * from テーブル名
where 条件;

*条件とは、フィールド名 > 1000 など

一部のフィールドだけ

select フィールド名, フィールド名 from テーブル名;

0
1
0

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
1