Create the Hotel table using the integrity enhancement features of SQL.
What will be an ideal response?
CREATE DOMAIN HotelNumber AS CHAR(4);
CREATE TABLE Hotel(
hotelNo HotelNumber NOT NULL,
hotelName VARCHAR(20) NOT NULL,
city VARCHAR(50) NOT NULL,
PRIMARY KEY (hotelNo));
Computer Science & Information Technology
You might also like to view...
Bevel and Emboss are a set of 12 preset adjustments that affect the brightness and contrast of a layer style to create dramatic lighting effects.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
A recurrence ____________________ schedules an appointment at regular intervals.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology