Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは非常に基本的な質問かもしれませんが、正しいコマンドが見つかりません。
コマンドを使用して、テーブル内のデータフィールドを一覧表示できます
select * from cat where table_name='mytable';
sqlplus を使用してこのテーブルに挿入されたデータを確認するにはどうすればよいですか?
次の簡単なステートメントを使用して、テーブルからすべてのデータを取得できます。
select * from <table name>;
したがって、テーブルからすべてのデータを取得する場合は、次catを試してください。
cat
select * from cat;
からすべてのデータを取得したい場合は、次の方法mytableを試してください。
mytable
select * from mytable;
ステートメントで定義するwhere句は、この単純な「すべてを選択する」ステートメントが返す結果をフィルタリングするために使用されます。
where