Advertisements
Advertisements
प्रश्न
Create a table for the information given below by choosing appropriate data types. Specify proper primary key for the table 1) Movie 2) Actor
- Movie (Registeration_no, movie_name, Realease_Date)
- Actor (actor_id, Actor_name, birth_date )
एका वाक्यात उत्तर
उत्तर
Create table movie (
Registration_no smallint primary key,
movie_name varchar (20),
Release_Date date
);
Create table actor (
actor_id smallint primary key,
Actor_name varchar (20),
birth_date date
);
shaalaa.com
Data Definition Language (DDL) Commands
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?