Domande taggate «mysql»

4
Metodo per la creazione di una sottoquery mediante JDatabase
A http://docs.joomla.org/Selecting_data_using_JDatabase , non esiste un metodo documentato per scrivere una sottoquery usando JDatabase. https://gist.github.com/gunjanpatel/8663333 esemplifica un modo per ottenere ciò con (alcuni bit omessi): $subQuery = $db->getQuery(true); $query = $db->getQuery(true); // Create the base subQuery select statement. $subQuery->select('*') ->from($db->quoteName('#__sub_table')) ->where($db->quoteName('subTest') . ' = ' . $db->quote('1')); // Create the …


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.