I have the following query running on a MySQL, but it fails when I run it on a SQL Server database. How should it look to please SQL Server?
INSERT INTO first_table (pk, data)
VALUES ((SELECT value
FROM second_table
WHERE key = 'key'),
'other-data');