Viewing 13 posts - 76 through 89 (of 89 total)
So I have a couple of dilemmas. I can create a good table for dbo.Competitors.
CREATE TABLE dbo.Competitors (
CompetitorID int IDENTITY(1,1) NOT NULL PRIMARY KEY...
May 15, 2018 at 4:09 pm
That worked. Here I am creating 4 tables.
USE meetscoreslive
--===== If the Competitors table already exists, Drop Table
IF OBJECT_ID('dbo.Competitors','U') IS NOT NULL
May 15, 2018 at 2:30 pm
I am back for a while. Thank you sgmunson for the example. I have modified it to reflect all the data I need...
May 15, 2018 at 12:45 pm
May 8, 2018 at 10:35 am
I have reduced my 3 query's to the most basic data. From this I will need to output the xml/CSV/JSON files and also create a user interface to select which...
May 4, 2018 at 10:03 pm
So I think what your are saying is I need to just have one big table like QWomenResultsDay1 with all the records and then output each category to xml/csv/JSON so...
May 4, 2018 at 5:19 pm
Yes, I do want to code the most efficiently, just beginning like you said. So to start over here are the different tables I will have.
This table...
May 4, 2018 at 1:46 pm
I am attaching the three queries I have which are not finished yet. The JSON is the format that the app designers want. Please remember this is my first week...
May 4, 2018 at 10:39 am
Ok, So here is a little more detail. We have a program (one that I cannot have access to the code) that runs the meets. Judges enter scores and tallies...
May 3, 2018 at 7:36 pm
I have been reading that it is not necessary to sort the table? Is that true. I was thinking of sorting the table by AgeGroup/event/avgscore and then outputting the table...
May 2, 2018 at 10:59 am
May 2, 2018 at 10:30 am
Ok so I need to declare the table first. Here is how the program works. There is the main scoring software that the judges enter the individual scores for. The...
May 2, 2018 at 10:24 am
Viewing 13 posts - 76 through 89 (of 89 total)