Search results

  1. tltanhueco1990

    Scenario to RDBMS in SQL Server

    Yes. I just needed guidance on this. I'm not actually asking for the right answers.
  2. tltanhueco1990

    Good Day!

    Late reply, buddy but thanks for the welcome!
  3. tltanhueco1990

    Scenario to RDBMS in SQL Server

    Good day, everyone! I have this new project where I need to turn these scenarios into a DB with ERDs by CREATE DATABASE/CREATE TABLE without typing any actual queries, but all tables are in a one-to-many relationship: I need to set associated primary keys and foreign keys to each other...
  4. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    We actually needed the JOIN function? Noted! Thanks!
  5. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    The 1st 2 queries are done, thanks to your amazing support! Is counting the number of admission by year from every province like this: SELECT Year([admission_date]) AS [Year], province_names.province_name, Count(admissions.patient_id) AS Total FROM province_names GROUP BY...
  6. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    This will be most helpful! Thank you so much!
  7. tltanhueco1990

    Isaiah 60:22.

    Isaiah 60:22.
  8. tltanhueco1990

    Close Button (X in upper right corner) Doesn't Close Access

    With cheese grates as torn skin for added falir~
  9. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    I’m supposed to follow this relationship table. Now, I ponder where to get MonthName(). A close professor of mine just stated that I just need 3 statements: COUNT GROUP BY ORDER BY
  10. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    Here's the full DB I'm trying to identify. I can't seem to zip it, so I'll send the file here directly. I have 3 queries to work on: a. Counting the number of Diseases by Year. b. Counting the number of Admission by Year and Month. c. Counting the number of Admission by Year from every Province.
  11. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    Thank for sharing, ebs! A rather strange part is that I have no table for the month of the admission date within the relationship.
  12. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    SELECT Year(#11/3/2023#) AS [Year], MonthName(1) AS [Month], Count(*) AS Total FROM admissions GROUP BY Month([admission_date]) The output is a blank query. Might I ask why the 'MonthName(Month(admission_date)), Month([admission_date])' part?
  13. tltanhueco1990

    Close Button (X in upper right corner) Doesn't Close Access

    Doesn't happen to mine! Could be a bug in the system. If it happens occasionally, have you tried deleting and reinstalling Access? It sometimes works.
  14. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    Thanks again for responding! I also had this syntax error with the MonthName() part where it states the message: "Your query does not include the specified expression 'Month(admission_date)' as part of an aggregate function." Which is strange because I have an 'admission_date' on my...
  15. tltanhueco1990

    But of course! "El" and "La" differs in Espanol.

    But of course! "El" and "La" differs in Espanol.
  16. tltanhueco1990

    How you Reboot Yourself when Depressed?

    And I thought "Impostor Syndrome" was every IT's worst nightmare~ :ROFLMAO: I'm still at the learning phase, but coding drains me out so much. I just close my laptop, walk to my bed which is only 2 steps away from me and take a power nap and a prayer.
  17. tltanhueco1990

    Post things men do

    - Helps in carrying those heavy groceries (Guilty here~ hahahah) - Eats more protein, less sugar (But I eat beef, chicken, fish AND loads of ice cream~ :ROFLMAO: ) People call me fat/chubby. I call this "muscle reservoir". If I was fat, how can I lift heavy things? :sneaky:
  18. tltanhueco1990

    Why No one Understands this?

    This it the reason why I'm taking my Master's degree: I don't want to work for a company. I'd rather teach what was taught to me during my Master's life to undergraduates and postgraduates. For now, I, myself am a Masters student who got career shifted from Hospitality to IT.
  19. tltanhueco1990

    ChatGPT: The Future of AI is Here!

    But until the time ChatGPT gets updated with a DB after 2021, it might get overthrown by Bard.
  20. tltanhueco1990

    Solved Multiple MonthName() in a Single Query using MS Access?

    That's new information for me! Thank you! Same goes for you, @arnelgp !
Top Bottom