Untitled
unknown
plain_text
a year ago
324 B
5
Indexable
CREATE TABLE Authors ( author_id INT PRIMARY KEY, author_name VARCHAR(100) ); -- Insert sample data into Authors table INSERT INTO Authors (author_id, author_name) VALUES (1, 'Rabindranath Tagore'), (2, 'R.K. Narayan'), (3, 'Arundhati Roy'); -- Create Books table CREATE TABLE Books ( book_id INT PRIMARY KEY,
Editor is loading...
Leave a Comment