I am an Oracle DBA and I am new to Informix. Now I need to delete some records (for example, the first 100 records)from a table in Informix for test purpose. Could somebody tell me how to do it? The query in Oracle database should be:
delete from test_table where rownum<101;
But it does not work in Informix.
Thanks you so much.
delete from test_table where rownum<101;
But it does not work in Informix.
Thanks you so much.