Posts by bena • 12 points
4 posts
-
0
votes0
answers96
viewsQ: The column '<column name>' is invalid in the selection list because it is not contained in an aggregation function or in the GROUP BY clause
Hello! In the system there is data collection for some questions and the answers are 0-100. My database has the following tables: Person, Question, Personal. I’m trying to get a select where to…
-
0
votes1
answer29
viewsQ: Doubt with ng-repeat Angularjs
I have an array of objects, which within it has another array of objects. Follows:` $scope.menu = [{ titulo: 'Comercial', submenus: [{ nome: 'Clientes', url: 'url/clientes' },{ nome: 'Proposta',…
-
-2
votes1
answer29
viewsQ: mysql syntax error
I am running the following script for database creation: create database jogos; use jogos; create table jogo( codigojogo int auto_increment primary key, nomejogo varchar(40) not null ); create table…
-
-1
votes2
answers1169
viewsA: Check the occurrence of each letter in a string - C
void procedure (char *palavra){ int cont, x=0, cont2; char letra; for (cont=0; cont<strlen(palavra); cont++){ letra=palavra[cont]; for (cont2=0; cont2<strlen(palavra); cont2++){…