Gamedate
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 67 articles for 0.304 sec
Dora, Bondo, Favio, now Gamede, 4th super-hurricane in 2007 so far. http://en.wikipedia.org/wiki/2006-07_Southern_Hemisphere_tropical_cyc... https://metocph.nmci.navy.mil/jtwc/warnings/sh1507web.txt https://metocph.nmci.navy.mil/jtwc/warnings/sh1507.gif Average 14 days apart, just like 2006. Gonna get super-scary this year if you live near any tropical coast. Kick that CO2 addiction before     

Group: alt.energy · Group Profile · Search for Gamedate in alt.energy
Author: Exxon Liars & Thieves
Date: Feb 25, 2007 19:34

Assuming you have the table structure indicated. A query like the following will show you everyone that played on a specific date. SELECT Players.* FROM Players Inner Join GamePlayers ON Players.PKID = GamePlayers.PlayerID WHERE GamePlayers.GameDate = #2007-12-22# In the design view (query grid) -- Add both tables -- Drag the PKID field to the PlayerID field to set up the join -- Select
Show full article (0.42Kb) · Show article thread
john i know you must be busy !!i have read your post again and need help on building the query you have suggested thanks again dennis "dennis" wrote: > hi John you are on the right track to solve my query but!! > when and where do i fill in the dates. so far i have created a table > players ID pk primary key > full name text > tag No unique No for each player > a second table     

Group: microsoft.public.access.gettingstarted · Group Profile · Search for Gamedate in microsoft.public.access.gettingstarted
Author: John Spencer
Date: Aug 19, 2008 04:18

hi John you are on the right track to solve my query but!! when and where do i fill in the dates. so far i have created a table players ID pk primary key full name text tag No unique No for each player a second table game players game date date/time player id number(not auto no pk) full name text tag No number i have created a unique index between
Show full article (1.26Kb) · Show article thread
Sounds as if you need a table to store the selectees for a specific date. Table: Players - information on the players Field: PKID - autonumber field (PrimaryKey) Field: LastName Field: FirstName Field: DateOfBirth etc. table: GamePlayers - Information on who is playing on a specific date Field: GameDate - DateTimeField Field: PlayerId - Long and it will contain one of the values in the     

Group: microsoft.public.access.gettingstarted · Group Profile · Search for Gamedate in microsoft.public.access.gettingstarted
Author: dennis
Date: Aug 18, 2008 15:36

Bill, I noticed that the code I had originally suggested for parsing your data failed to capture the playoffs and superbowl. That is corrected in the code shown below. Also shown is a slight revision of the code that Mary suggested, combined with some extra code for capturing overall streaks, home streaks, and visitor streaks, as well as Mike's suggested code. Both results from both sets
Show full article (2.43Kb) · Show article thread
Bill, I used Mary's code as the basis of the following, thus it probably results in wacky results as well. However, since with all previous posts (but your latest) you indicated skipping the suggested SAS solutions and used Excel and Matlab instead, I was more concerned about showing others how the problem could be solved in SAS. Your latest post indicated that you were actually trying     

Group: microsoft.public.access.gettingstarted · Group Profile · Search for Gamedate in microsoft.public.access.gettingstarted
Author: dennis
Date: Aug 16, 2008 17:08

Bill, I'm still not sure that I understand what you are looking for. See if you can use the following to do the desired calculations: data want (keep=week Game_Date team opponent at w_l); retain week Game_Date; format Game_Date date9.; length team opponent $3; infile cards truncover; input dataline $80.; if scan(dataline,1,' ') eq 'Week' then week=input(scan(dataline
Show full article (2.16Kb) · Show article thread
Bill, It would help, in the future, if you provided at least some attempt at the coding before posting. However, here is a potential solution. data want (keep=week Game_Date Team w_l); retain week Game_Date; format Game_Date date9.; length team $3; infile cards truncover; input dataline $80.; if scan(dataline,1,' ') eq 'Week' then week=input(scan(dataline,2,' '     

Group: microsoft.public.access.gettingstarted · Group Profile · Search for Gamedate in microsoft.public.access.gettingstarted
Author: John Spencer
Date: Aug 16, 2008 07:28

Bill, If your data are space dilimited, and include the irrelevant headers as shown in your example, then something like the following might work: data have (keep=week GameDate Team SU); retain hold_dataline week GameDate record_number; infile cards truncover; informat dataline $80.; informat hold_dataline $80.; informat Team $50.; informat week 2.; informat SU $1.; informat
Show full article (1.47Kb) · Show article thread
    

Group: comp.softsys.sas · Group Profile · Search for Gamedate in comp.softsys.sas
Author: Arthur Tabachneck
Date: Jul 23, 2008 08:22

Show full article (10.52Kb)
    

Group: comp.softsys.sas · Group Profile · Search for Gamedate in comp.softsys.sas
Author: Arthur Tabachneck
Date: Jul 21, 2008 20:16

Show full article (9.37Kb)
    

Group: comp.softsys.sas · Group Profile · Search for Gamedate in comp.softsys.sas
Author: Arthur Tabachneck
Date: Jul 17, 2008 20:11

Show full article (8.07Kb)
    

Group: comp.softsys.sas · Group Profile · Search for Gamedate in comp.softsys.sas
Author: Arthur Tabachneck
Date: Jul 15, 2008 18:32

Show full article (6.00Kb)
    

Group: comp.softsys.sas · Group Profile · Search for Gamedate in comp.softsys.sas
Author: Arthur Tabachneck
Date: Jul 14, 2008 09:10

Show full article (2.79Kb)
1 · 2 · 3 · 4 · 5 · 6 · 7 · next