Changes between Version 2 and Version 3 of AppDesign/UseCase02


Ignore:
Timestamp:
01/21/25 02:29:38 (33 hours ago)
Author:
211585
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AppDesign/UseCase02

    v2 v3  
    1111- User enters the social media handle, profile URL, and specifies the account type (e.g., Public, Private..).
    1212- System validates and stores the social media profile information in the database.
     13
     14
     15{{{
     16INSERT INTO SocialMediaProfile (platform, user_name, account_type, followers_count, userid) VALUES
     17('Twitter', 'user1_twitter', 'public', 1500, 1)
     18}}}