Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个像图像的问题。!例子。
我想获取“forQ15aRowList”的结果。我可以通过一个简单的 SQL 查询得到它。
我需要数组中的值 [5,2,3,1,4,6],以便我可以单独使用这些值!
收到 SQL 结果后,使用explode() (php) 或它的变体,无论您使用哪种语言,将字符串按“,”拆分为一个数组。
$array = explode(',', $result);
我不相信用纯 SQL 来做这件事是可能的(或一个好主意)。