sql >> Base de Datos >  >> RDS >> Mysql

¿Puedo crear dinámicamente una tabla mySQL desde JSON?

Pieza de código simple para crear una tabla mysql e insertar valores desde cualquier variable JSON. Este es un truco rápido... verifique los tipos de campo, etc. :) Probablemente haya mejores formas, pero esta funciona y ya me ha ahorrado horas en la nomenclatura manual de campos

Esto se puede modificar para crear una tabla de relaciones que también maneje objetos. Ahora, está hecho para material JSON formado por matriz y no para objetos, es decir, matrices en matrices.

<?php

    JSON_to_table($place_your_JSON_var_here_please);

            function JSON_to_table($j_obj, $tblName = "New_JSON_table_" . time()){
            $j_obj = json_decode($your_JSON_variable, true);
            if(!mysql_num_rows( mysql_query("SHOW TABLES LIKE '" . $tblName . "'"))){ 
                $cq = "CREATE TABLE ". $tblName ." (
                id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,";
                foreach($j_obj as $j_arr_key => $value){
                    $cq .= $j_arr_key . " VARCHAR(256),";
                }
                $cq = substr_replace($cq,"",-1);
                $cq .= ")";
                mysql_query($cq) or die(mysql_error());
            }

            $qi = "INSERT INTO $tblName (";
            reset($j_obj);
                foreach($j_obj as $j_arr_key => $value){
                    $qi .= $j_arr_key . ",";
                }
                $qi = substr_replace($qi,"",-1);
            $qi .= ") VALUES (";
            reset($j_obj);
                foreach($j_obj as $j_arr_key => $value){
                    $qi .= "'" . mysql_real_escape_string($value) . "',";
                }
            $qi = substr_replace($qi,"",-1);
            $qi .= ")";
            $result = mysql_query($qi) or die(mysql_error());

        return true;
            }
?>