mirror of
https://github.com/freedbygrace/SQL.git
synced 2026-07-26 11:28:16 +00:00
77d5600ce0
CUSTOMER SEGMENTS QUERY FIX:
- Fixed column names in verification query [5/5]
- Changed from segment_code to segment_name
- Changed from description to segment_description
- Matches actual table schema in 01-create-tables.sql
TABLE SCHEMA:
CREATE TABLE customer_segments (
segment_id SERIAL PRIMARY KEY,
segment_name VARCHAR(100) NOT NULL UNIQUE,
segment_description TEXT,
...
);
IMPACT:
- All 5 verification queries now work correctly
- No more column does not exist errors
- Setup script completes successfully