dongming0505 2015-06-16 12:16
浏览 170
已采纳

Golang ORDER BY问题与MySql

I can't seem to dynamically ORDER BY with db.Select(). I've Googled without any luck...

WORKS

rows, err := db.Query("SELECT * FROM Apps ORDER BY title DESC")

DOES NOT WORK

rows, err := db.Query("SELECT * FROM Apps ORDER BY ? DESC", "title")

I'm not getting any errors, the query simply fails to order.

  • 写回答

1条回答 默认 最新

  • dongmi3203 2015-06-16 12:31
    关注

    Placeholders ('?') can only be used to insert dynamic, escaped values for filter parameters (e.g. in the WHERE part), where data values should appear, not for SQL keywords, identifiers etc. You cannot use it to dynamically specify the ORDER BY OR GROUP BY values.

    You can still do it though, for example you can use fmt.Sprintf() to assemble the dynamic query text like this:

    ordCol := "title"
    
    qtext := fmt.Sprintf("SELECT * FROM Apps ORDER BY %s DESC", ordCol)
    rows, err := db.Query(qtext)
    

    Things to keep in mind:

    Doing so you will have to manually defend vs SQL injection, e.g. if the value of the column name comes from the user, you cannot accept any value and just insert it directly into the query else the user will be able to do all kinds of bad things. Trivially you should only accept letters of the English alphabet + digits + underscore ('_').

    Without attempting to provide a complete, all-extensive checker or escaping function, you can use this simple regexp which only accepts English letters, digits and '_':

    valid := regexp.MustCompile("^[A-Za-z0-9_]+$")
    if !valid.MatchString(ordCol) {
        // invalid column name, do not proceed in order to prevent SQL injection
    }
    

    Examples (try it on the Go Playground):

    fmt.Println(valid.MatchString("title"))         // true
    fmt.Println(valid.MatchString("another_col_2")) // true
    fmt.Println(valid.MatchString("it's a trap!"))  // false
    fmt.Println(valid.MatchString("(trap)"))        // false
    fmt.Println(valid.MatchString("also*trap"))     // false
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀