निम्नलिखित पर विचार करें:
drop table if exists variousRights;
create table variousRights
( -- whitelist table of various privileges
id int auto_increment primary key,
rightType varchar(100) not null,
username varchar(100) not null
);
-- sample data below. For this exercise, all we care about is 'seeNullBirthDateRows'
-- but other data is inserted to ferret out troubles with strategy (too many rows returned)
insert variousRights (rightType,userName) values
('seeNullBirthDateRows','[email protected]'),
('seeNullBirthDateRows','[email protected]'),
('seeSecretIDs','[email protected]'),
('insertThing101','[email protected]');
drop table if exists employees;
create table employees
( id int auto_increment primary key,
empName varchar(100) not null,
birthDate date null
);
-- sample data inserted. One has a null for birthDate (empty as you say in the question)
insert employees(empName,birthDate) values
('John Smith',null),
('Sally Higgins','2016-02-07'),
('John Smith','2010-01-27');
क्वेरी:
select id,empName,birthDate
from employees
where birthDate is not null
union
select e.id,e.empName,e.birthDate
from employees e
cross join (select id from variousRights where rightType='seeNullBirthDateRows' and userName=current_user()) vr
where e.birthDate is null;
क्वेरी क्रॉस जॉइन और यूनियन पर निर्भर करती है। संघ के लिए, पहला भाग सभी उपयोगकर्ताओं के लिए समान होगा:employees
से सभी पंक्तियां एक गैर-शून्य जन्मदिन के साथ। संघ का दूसरा भाग variousRights
में विशेषाधिकार प्राप्त उपयोगकर्ताओं के लिए नल लौटाएगा तालिका जहाँ आप अपने विशेषाधिकारों का सपना देखते हैं।
स्वाभाविक रूप से उपरोक्त क्वेरी को एक दृश्य में रखा जा सकता है।
CURRENT_USER( ) समारोह।
जहां तक cross join
. का सवाल है , इस पर इस तरीके से विचार करें। यह एक कार्टेशियन उत्पाद है। लेकिन तालिका में शामिल हो गए (उपनाम vr
) या तो 1 पंक्ति होगी या 0 वापस आ रही होगी। यही यह निर्धारित करता है कि विशेषाधिकार प्राप्त उपयोगकर्ता शून्य जन्मतिथि पंक्तियों को देखते हैं या नहीं।
नोट:उपरोक्त का परीक्षण किया गया है। ठीक काम करने लगता है।