Search results

  1. H

    to replace "ram" with "shyam"

    i am really new to queries.. and this might seem very easy to u all.. but please lemme know.. i have a huge table and i have to change some values.. how to do it in one go... thnx piyush
  2. H

    queries to existing table

    thanx.. a lot
  3. H

    queries to existing table

    i have some query which i run every day and want to keep a record of different data it returns. for this i import that query as table. but each time a new table is formed.. is there any way i can directly pull the data returned by this query into an already existing table.
  4. H

    renaming columns of a crosstab query possible??

    "this_mnth" "that_mnth"
  5. H

    renaming columns of a crosstab query possible??

    yes.. i want that
  6. H

    renaming columns of a crosstab query possible??

    can i rename columns of a crosstab query?? can u explain using this example.. TRANSFORM Sum(foJUN.OPEN_INT) AS SumOfOPEN_INT SELECT foJUN.SYMBOL FROM foJUN WHERE (((foJUN.STRIKE_PR)=0) AND ((foJUN.OPTION_TYP)="XX") AND ((foJUN.TIMESTAMP)=Date()-1) AND ((foJUN.INSTRUMENT)="FUTSTK")) GROUP BY...
  7. H

    hw to avoid #error

    am new to sql please tell me where to put it in my sql query. thanx piyush
  8. H

    hw to avoid #error

    SELECT FO.SYMBOL, FO.today, FO.yest, (today-yest)/yest*100) AS perc FROM FO WHERE (((FO.today) Not In (0)) AND ((FO.yest) Not In (0))); sometimes when the value of FOValInLakh.[6/18/2008] is 0 i get #error. I am not able to sort(MAIN REQUIRMENT). if i use not in (0) criteria... i loose out...
  9. H

    how can i design this query??

    thank you khawar.. i just have basic knowledge of SQL it would be great if you can explain me this part of ur query,, [DateS] & "-Qty"
  10. H

    how can i design this query??

    dude i am using an older version of access.. so could not see what u have sent... plz help
  11. H

    help me design this query

    SELECT June.Scrip, Avg(June.[Quantity Traded]) AS [AVG] FROM June WHERE (((June.[Trade Date])>Date()-14)) GROUP BY June.Scrip; the above query gives me average of Quantity traded for last 14 days... now i want to see today's(or yesterday's) quantity traded as % of this average.. how...
  12. H

    how can i design this query??

    crosstab works only when i have 3 fields.. lemme re-state the problem i have a table which contains 5 feilds: scrip, date, qty, deliverable qty, deliverable qty% there is no primary key defined each day i recieve values for qty, deliverable qty, deliverable qty% for some 250 scrips(varies rom...
  13. H

    how can i design this query??

    i m using an older version of MS Access so cannot open ur file :( plz send me the sql.. and design details... i guess i will be able to understand
  14. H

    how can i design this query??

    crosstab allows me to select only one field.. i need to show multiple fields
  15. H

    please suggest a design scheme for my problem

    i won't be using any real time data.. this is just for reporting purpose.. plz help
  16. H

    how can i design this query??

    i am really new to access i have built a table which appears like this: SCRIP DATE QTY A 6-jun 100 B 6-jun 50 . .. .. Z 6-jun 200 A 5-jun 140 B...
  17. H

    please suggest a design scheme for my problem

    there is a set of data (some 15 fields) related to some 250 co.s which NSE releases everyday. this data is contained in 3 different tables which is made available at the end of each working day. i need to make a database from this. how can i incorporate all these data in three different table...
  18. H

    import data from excel file starting from 5th row

    hi, i want to import data from an excel file starting from the 5th row. how can i do so efficiently.
  19. H

    unable to create primary key using two fields

    thanx a lot both of u..
  20. H

    unable to create primary key using two fields

    hii i am new to access.. was trying to make a primary key usinmg 2 feilds.. its showing a problem that null isnt allowed.. i compacted the file.. even then its not working plz help
Back
Top Bottom