Alter table payments program in SQL

 

Question:

Alter table payments

Write a query to rename a column from bd_id to booking_id in the table payments


CODE:

alter table payments RENAME COLUMN bd_id to booking_id;
Previous
Next Post »