From professional translators, enterprises, web pages and freely available translation repositories.
select a question from the list.
select a question from the list.
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
select * from commandes where no_client =: x (si le sous-formulaire doit afficher toutes les données de la table cde.)
select * from order where cust_id =: x (if you want the subform to show all data from the orders table)
select * from commandes where no_client = : x (si le sous-formulaire doit afficher toutes les données de la table cde.)
select * from orders where customer_number =: x (if you want the subform to show all data from the orders table)
puisque nous avons demandé "select * from pays, region", où * est un joker signifiant tout, nous obtenons les deux colonnes des pays, et les trois colonnes des localités.
since we query "select * from countries, states", where the * is a wild card that stands for everything, we obtained the two columns for countries and the three for counties.
a-13-2 select * from etudiants, universites where etudiants. codeuniversite = universite . codeuniversite renvoie n lignes seulement (1 par étudiant).
a-13-2 select * from students, universities where students.universitycode=university.university code returns n rows only (1 per student).