首先定義乙個陣列,然後遍歷資料表,把相應的資料放到陣列中,最後通過json_encode()轉化陣列
json_encode() 函式的功能是將數值轉換成json資料儲存格式。
例如:<?php
//定義乙個陣列,用於儲存讀取到的資料
$array = array();
$query = mysql_query("select * from table");
//遍歷資料表
while($rows = mysql_fetch_array($query))
print_r($array);
//最後通過json_encode()轉化陣列
echo json_encode($array);
?>
PHP怎麼將陣列存入資料庫中
參考 php將陣列存入資料庫中的四種方式 原來陣列array是不可以直接插入到資料庫中的,得借助json encode 方法,並且資料庫的列得設定成text 型別大小 用途tinytext 0 255位元組 短文本字串 text 0 65 535位元組 長文字資料 mediumtext 0 16 7...
oracle資料庫批量將表名小寫轉大寫
oracle10g資料庫,sqlserver通過dts匯出資料到oracle後。查詢表資料時輸入 select from 表名 查詢資料執行正常。如果輸入 select from 表名 提示ora 000942表或檢視不存在 後來發現原因是 匯入oracle資料庫後,表名在資料字典中是小寫的。而用o...
mongodb資料轉mysql資料庫
from pymongo import mongoclient import pymysql class mongo2mysql object defenable mysql self,mysql host,mysql port,database,username,password,charset ...