table showing entries in various columnsは、特定の行の非空の値
私はそのURLの例で識別される特定の行に非NULL値を含む列の列名を欲しいを持つ列の列名を取得します。 。 クエリの出力は 、電子メール、パスワードでなければなりませんあなたはそれを作るため、同じ列に多くの値を格納すると、有名な悪い考えであることをこの
select url, group_concat(null_col separator ',')
from (
select url, 'username' null_col from yourTable where username is null union all
select url, 'phone' from yourTable where phone is null union all
select url, 'email' from yourTable where email is null union all
select url, 'password' from yourTable where password is null union all
select url, 'login' from yourTable where login is null
) t1
group by url
お知らせのような何かを行うことができます
あなたはもっと詳しく説明することができますか、私は実際にあなたが望むものを意味します。 – Jenish
私は、拡張機能を使用してブラウザから現在のURLを取得しています。このURLを使用して、私は入力フィールド名またはid値が必要です。 input type = "text" name = "email">この名前 - ** email **データベースから取得します。 –