Is there a way that i can Insert this to database?
INSERT INTO Bill_Table (Patient_ID, [Med/Room], Bill, [Paid/UnPaid])
VALUES (13, 'Room ID' + (SELECT Room_ID
FROM Room_Master
WHERE [Room_No.] = 2),
(SELECT Price
FROM Room_Type
WHERE Room_Type = 'Semi-Private'), 'UnPaid');
after the ' 13 ' on the values there is a string "Room ID" plus the selected "Room ID" but when I execute this only the Room ID inserted on the table is there a way I can put string text plus the select query