अमान्य मान पहचानना

PostgreSQL डेटाबेस में डेटा क्लीनिंग

Darryl Reeves, Ph.D.

Assistant Professor, Long Island University - Brooklyn

अमान्य डेटा मान

  camis   |              name               | inspection_date | score |            inspection_type            | ... 
 ---------+---------------------------------+-----------------+-------+---------------------------------------+-----
 ...      | ...                             | ...             | ...   | ...                                   | ...
 41659848 | LA BRISA DEL CIBAO              | 01/30/2018      | 20    | Cycle Inspection / Initial Inspection | ...
 40961447 | MESON SEVILLA RESTAURANT        | 03/19/2019      | 50    | Cycle Inspection / Initial Inspection | ...
 50063071 | WA BAR                          | 05/23/2018      | 15    | Cycle Inspection / Initial Inspection | ...
 50034992 | EMPANADAS MONUMENTAL            | 06/21/2019      | 17    | Cycle Inspection / Re-inspection      | ...
 50095871 | ALPHONSO'S PIZZERIA & TRATTORIA | 01/16/2020      | 10    | Cycle Inspection / Initial Inspection | ...
 ...      | ...                             | ...             | ...   | ...                                   | ...
  camis   |             name             | inspection_date | score |                 inspection_type                 | ... 
 ---------+------------------------------+-----------------+-------+-------------------------------------------------+-----
 ...      | ...                          | ...             | ...   | ...                                             | ...
 41104041 | THE SPARROW TAVERN           | 09/17/2019      | 13    | Cycle Inspection / Initial Inspection           | ...
 50016937 | BURGER KING                  | 09/14/2018      | 12    | Cycle Inspection / Re-inspection                | ...
 50066469 | DARBAR'S CHICKEN & RIBS      | 08/07/2017      | 11    | Pre-permit (Operational) / Reopening Inspection | ...
 41195691 | F & J PINE RESTAURANT        | 05/02/2019      | 26    | Cycle Inspection / Initial Inspection           | ...
 50015706 | EL RINCONCITO DE LOS SABORES | 12/18/2019      | A     | Cycle Inspection / Initial Inspection           | ...
 ...      | ...                          | ...             | ...   | ...                                             | ...
PostgreSQL डेटाबेस में डेटा क्लीनिंग

पैटर्न मैचिंग से अमान्य डेटा संभालना

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score NOT SIMILAR TO '\d+';
PostgreSQL डेटाबेस में डेटा क्लीनिंग

पैटर्न मैचिंग से अमान्य डेटा संभालना

  • क्वेरी केवल गैर-अंकित कैरेक्टर को रोकती है
  • मान की लंबाई पर कोई पाबंदी नहीं
SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score NOT SIMILAR TO '\d{1}' AND
  score NOT SIMILAR TO '\d{2}' AND
  score NOT SIMILAR TO '\d{3}';
PostgreSQL डेटाबेस में डेटा क्लीनिंग

टाइप constraints का उपयोग

  • कॉलम में integer मान होते हैं
  • कॉलम में non-integer नहीं होने चाहिए
ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;
  • SMALLINT: मान -32,768 से 32,767 तक
  • USING क्लॉज़ पिछले मानों के कन्वर्ज़न को बताती है
PostgreSQL डेटाबेस में डेटा क्लीनिंग

रीव्यू: Regular Expressions की बेसिक्स

Metacharacter उपयोग Example RE Example Match
\d एक अंक (0-9) से मेल खाता है \d\d\d '345'
? पिछले कैरेक्टर के 0 या 1 से मेल x\d? 'x5'
+ पिछले कैरेक्टर के 1 या अधिक से मेल \d+ '10'
* किसी भी कैरेक्टर के 0 या अधिक बार से मेल \d* '3081'
[] ब्रैकेट के अंदर किसी भी कैरेक्टर से मेल [a-z] 'f'
PostgreSQL डेटाबेस में डेटा क्लीनिंग

टाइप constraints से range constraints संभव

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score < 0;
PostgreSQL डेटाबेस में डेटा क्लीनिंग

टाइप constraints से range constraints संभव

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score <= -1;
PostgreSQL डेटाबेस में डेटा क्लीनिंग

टाइप constraints से range constraints संभव

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score < 0 OR
  score > 100;
PostgreSQL डेटाबेस में डेटा क्लीनिंग

टाइप constraints से range constraints संभव

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score < 0 OR
  score >= 101;
PostgreSQL डेटाबेस में डेटा क्लीनिंग

BETWEEN ऑपरेटर

SELECT
  camis, name, inspection_date, score
FROM
  restaurant_inspection
WHERE
  score NOT BETWEEN 0 AND 100;
  camis   |          name           | inspection_date | score 
 ---------+-------------------------+-----------------+-------
 ...      | ...                     | ...             |   ...
 41702543 | TROPICAL GRILL          | 05/14/2018      |   109
 50074058 | PAD THAI                | 08/01/2018      |   101
 50085349 | DON CHILE MEXICAN GRILL | 12/04/2018      |   124
 50092932 | ENERGY JUICE BAR        | 06/24/2019      |   102
 41702543 | TROPICAL GRILL          | 05/14/2018      |   109
 50034653 | KAI FAN ASIAN CUISINE   | 12/06/2019      |    -1
 ...      | ...                     | ...             |   ...
PostgreSQL डेटाबेस में डेटा क्लीनिंग

अभ्यास करते हैं!

PostgreSQL डेटाबेस में डेटा क्लीनिंग

Preparing Video For Download...