web-dev-qa-db-ja.com

NULL以外の値を持つテーブルから列を選択する方法は?

Nullである列の数百を含むテーブルがあり、値を含む列のみが返されるようにselectステートメントが必要です。データをよりよく分析するのに役立ちます。何かのようなもの:

テーブル名から(非NULL列)を選択します。

少なくとも1つの非NULL値を持つすべての列を選択したい。

これはできますか?

22
Walker

統計情報として見て、それはあなたのために役立つかもしれません:

SQL> exec dbms_stats.gather_table_stats('SCOTT','EMP');

PL/SQL procedure successfully completed.

SQL> select num_rows from all_tables where owner='SCOTT' and table_name='EMP';

  NUM_ROWS
----------
        14

SQL> select column_name,nullable,num_distinct,num_nulls from all_tab_columns
  2  where owner='SCOTT' and table_name='EMP' order by column_id;

COLUMN_NAME                    N NUM_DISTINCT  NUM_NULLS
------------------------------ - ------------ ----------
EMPNO                          N           14          0
ENAME                          Y           14          0
JOB                            Y            5          0
MGR                            Y            6          1
HIREDATE                       Y           13          0
SAL                            Y           12          0
COMM                           Y            4         10
DEPTNO                         Y            3          0

8 rows selected.

たとえば、NUM_NULLS = NUM​​_ROWSかどうかを確認して、「空の」列を識別できます。
参照: ALL_TAB_COLUMNSALL_TABLES

3
Egor Rogov

以下を使用してください:

SELECT *
FROM information_schema.columns
WHERE table_name = 'Table_Name' and is_nullable = 'NO'

Table_Nameそれに応じて交換する必要があります...

5
Jesu
select column_name
from user_tab_columns
where table_name='Table_name' and num_nulls=0;

以下は、null以外の列を取得する簡単なコードです。

4
raghu gs

これは単一のクエリで実行できるとは思わない。最初にどの列にデータが含まれているかをテストし、その情報に基づいて文をまとめるために、plsqlが必要になる場合があります。もちろん、テーブル内のデータが変更された場合は、ステートメントを再作成する必要があります。

declare

   l_table          varchar2(30) := 'YOUR_TABLE';
   l_statement      varchar2(32767);
   l_test_statement varchar2(32767);

   l_contains_value pls_integer;

   -- select column_names from your table
   cursor c is
      select column_name
            ,nullable
        from user_tab_columns
       where table_name = l_table;

begin
   l_statement := 'select ';
   for r in c
   loop
      -- If column is not nullable it will always contain a value
      if r.nullable = 'N'
      then
         -- add column to select list.
         l_statement := l_statement || r.column_name || ',';
      else
         -- check if there is a row that has a value for this column
         begin
            l_test_statement := 'select 1 from dual where exists (select 1 from ' || l_table || ' where ' ||
                                r.column_name || ' is not null)';
            dbms_output.put_line(l_test_statement);
            execute immediate l_test_statement
               into l_contains_value;


            -- Yes, add column to select list
            l_statement := l_statement || r.column_name || ',';
         exception
            when no_data_found then
               null;
         end;

      end if;
   end loop;

   -- create a select statement
   l_statement := substr(l_statement, 1, length(l_statement) - 1) || ' from ' || l_table;

end;
3
Rene
select rtrim (xmlagg (xmlelement (e, column_name || ',')).extract ('//text()'), ',') col
from (select column_name
from user_tab_columns
where table_name='<table_name>' and low_value is not null)
0
Deepankar