Posts Tagged mysql

Mysql client for Ubuntu

I’ve tried TORA, which seems to be nice
sudo apt-get install tora
sudo apt-get install libqt3-mt-mysql
Any others?

Tags: , , ,

How to modify Drupal Views SQL

I wanted to sort my views result on field which doesn’t exists in db table, so my idea was to use:

SELECT … WHERE field IN (value1, value2) … ORDER BY field = value1 DESC, field = value2 DESCĀ  etc

Which orders my elements exactly as I need, but problem was how to modyfy views sorting options?

Simply you can implement hook_views_query_alter(&$view, &$query) in your_module.views.inc file

$query->orderby is an array of all orderby elements, so you can easily modify it.

Tags: , , ,