摘要:
# -*- coding: utf-8 -*- from django.http import HttpResponse from django.shortcuts import render_to_response from django.db import connection from django.shortcuts import render from django.views.d... 阅读全文
摘要:
1.授权(192.168.2.173)grant replication slave on *.* to 'fs_repl'@'192.168.2.%' identified by 'fsIJNertP';flush privileges;2.导出数据(192.168.2.173)/usr/loca 阅读全文
摘要:
group_concat函数:用来将多行聚集成一行 例如:有一张表叫user name 小红 小蓝 小黄 select group_concat(name) from user 查出的结果是 小红,小蓝,小黄 这个函数会经常搭配group by 使用。 BUG在于当你group_concat和uni 阅读全文