7 lines
215 B
SQL
Executable File
7 lines
215 B
SQL
Executable File
PROMPT Negative test: common employee must not retrieve HR, LEGAL or EXEC confidential chunks.
|
|
SELECT classification, COUNT(*) AS visible_chunks
|
|
FROM dds_rag_chunks
|
|
GROUP BY classification
|
|
ORDER BY classification;
|
|
|