Hye J.Benson,
First of all, let me tell u Sir, that, I don't want to continuing INSERTing records in table if it is exist..
Let me clear this time, In my
VB application, everytime when it will run, from my table (say it has 10 records), it is going to display on first maximum 5 records.. got it? So,what's happening that table is updating constantly, so, what i want to do is, everytime when i run my
VB application, it should display only first 5 maximum records, whether table has only 5 records or 50 records..
I have just used following query, right now, which can create table one time, but not for everytime.. got it? SO, please suggest me some query, which can override that same table eveytime when i run my
VB applilcation..
==============================================
SELECT TOP 5 buyers INTO top_buy FROM trade ORDER BY buyers DESC
==============================================
Here, I am displaying top 5 buyers from table called "trade" and everytime, when I could run my
VB application the overriding table could be "top_buy"..
Hope, I have cleared the picture now..
~~Dev~~