I was given an image of a sql database model and asked to extract information from it. how do i convert or transcribe the image into something I can do this with?
I don’t know what to try because the database model is an image and not a ddl file.
I was given an image of a sql database model and asked to extract information from it. how do i convert or transcribe the image into something I can do this with?
I don’t know what to try because the database model is an image and not a ddl file.
2
Answers
Create Tables and provides Primary key and Unique key as per model image and then you can get easily .
Create Table [dbo].[location](
[Id] [int] IDENTITY(1,1) location_id NOT NULL,
)
and create all and then work out .
You can start using this one as a base:
https://onecompiler.com/mysql/3zz3m4gnd
it creates DB tables, ads some dummy data and selects some info from it
MySQL dump: