You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 
        4A <5 minutes look into the MySql manual revealed: you can create tables with generated columns, you can use that to create an extra column which extracts the start_time from a JSON column, and you can place an index on this generated column as well as a primary key constraint. So why don't you simply try this out?Doc Brown– Doc Brown2021-09-22 20:52:42 +00:00Commented Sep 22, 2021 at 20:52
 - 
        @DocBrown This looks like it will work. Thank you!simgineer– simgineer2021-09-23 02:58:12 +00:00Commented Sep 23, 2021 at 2:58
 - 
        In your example, your data looks very flat. If that's the case, you could design the table according to the fields in your JSON object, so the JSON object becomes a record in this table, and generate a JSON object when you read from the table.Green 绿色– Green 绿色2021-09-23 03:42:34 +00:00Commented Sep 23, 2021 at 3:42
 - 
        @simgineer: you are welcome. I would recommend to move the solution you found from the question into an answer (and accept it), that works better with the way the site is designed. For example, it lets people vote individually for the question and the answer. And avoid to use phrases like "Edit", anyone can see the question's history and timeline using the related buttons above.Doc Brown– Doc Brown2021-09-23 05:26:37 +00:00Commented Sep 23, 2021 at 5:26
 - 
        @Green The data actually has more interesting data that is not necessarily flat and potentially child objects with attributes, arrays, etc.simgineer– simgineer2021-09-24 04:37:28 +00:00Commented Sep 24, 2021 at 4:37
 
                    
                        Add a comment
                    
                 | 
            
                
            
        
         
    How to Edit
        - Correct minor typos or mistakes
 - Clarify meaning without changing it
 - Add related resources or links
 - Always respect the author’s intent
 - Don’t use edits to reply to the author
 
        How to Format
    
    - 
                create code fences with backticks ` or tildes ~
                ```
like so
``` - 
                add language identifier to highlight code
                ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
 - for linebreak add 2 spaces at end
 - _italic_ or **bold**
 - indent code by 4 spaces
 - backtick escapes 
`like _so_` - quote by placing > at start of line
 - to make links (use https whenever possible)
                <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
 
            How to Tag
        
        A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
 - use tags that describe things or concepts that are essential, not incidental to your question
 - favor using existing popular tags
 - read the descriptions that appear below the tag
 
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
 - creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you