RDBM Create PointOfInterest and Town Table in SQL Tarurendra October 31, 2021 Add Comment Tarurendra Question: Create PointOfInterest and Town Table Create PointOfInterest and Town tables based on the structure and the constraints given be... Read More
RDBM Create Guest Table program in SQL Tarurendra October 30, 2021 Add Comment Tarurendra Question: Create Guest Table Create a table “Guest” with column specification mentioned below. CODE : – Create table Guest( guestID numb... Read More
RDBM Alter table buses program in SQL Tarurendra October 29, 2021 Add Comment Tarurendra Question: Alter table buses Write a query to remove the column Ac_Available from the buses table. CODE : – alter table buses drop column A... Read More
RDBM Modify the datatype program in SQL Tarurendra October 28, 2021 Add Comment Tarurendra Question: Modify the datatype Write a query to change the type of field Ac_Available in the buses table to varchar(5) CODE : – alter table... Read More
RDBM Add a new column program in SQL Tarurendra October 27, 2021 Add Comment Tarurendra Question: Add a new column Write a query to add a new column named Ac_Available of type varchar2(10) to Buses table. CODE : – alter table ... Read More
RDBM Alter table payments program in SQL Tarurendra October 26, 2021 Add Comment Tarurendra Question: Alter table payments Write a query to rename a column from bd_id to booking_id in the table payments CODE : – alter table paymen... Read More
RDBM Create Payments table program in SQL Tarurendra October 25, 2021 Add Comment Tarurendra Question: Create Payments table Refer the below schema and create the table payments. Column Name Datatype Size Constraint Constraint name R... Read More
RDBM Create SCHEDULE table program in SQL Tarurendra October 24, 2021 Add Comment Tarurendra Question: Create SCHEDULE table Refer the below schema and create the SCHEDULE. Column Name Datatype Size Constraint Constraint name Refer... Read More
RDBM Create Buses table program in SQL Tarurendra October 23, 2021 Add Comment Tarurendra Question: Create Buses table Refer the below schema and create the buses table. Column Name Datatype Size Constraint Constraint name Bus_n... Read More
RDBM Create Users table program in SQL Tarurendra October 22, 2021 Add Comment Tarurendra Create Users table Refer to the below schema and create the table USERS. Refer to the below schema and create the table USERS. Column Name... Read More