in reply to Re^3: perl mysql - INSERT INTO, 157 columns
in thread perl mysql - INSERT INTO, 157 columns
any type of database covered by DBD would at least support "select * from foo limit 1"Unfortunately, MS SQL Server throws an error:
Incorrect syntax near '1'
What works, though, is
SELECT TOP 1 * FROM table
|
|---|