CommencerCommencer gratuitement

SBA appeals table

In managing the SBA database, it would be helpful for applicants that were denied a loan to have an electronic appeal process that would allow the rejected loan application to be reconsidered. The focus of this exercise will be on designing a table to store both the appeal and the accompanying text describing the justification for reconsideration.

Cet exercice fait partie du cours

Creating PostgreSQL Databases

Afficher le cours

Instructions

  • Create a table named appeal which includes a unique identifier,id, as well as a column named content allowing the storage of as much text as required for the applicant to make her case.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

-- Create the appeal table
___ ___ ___ (
    -- Specify the unique identifier column
	___ SERIAL ___ ___,
    -- Define a column for holding the text of the appeals
    ___ ___ NOT NULL
);
Modifier et exécuter le code