top of page

Contar linhas de uma tabela SQL

Foto do escritor: Shimotsu LyuShimotsu Lyu

SELECT COUNT(*)
FROM “[NOME TABELA]”

2 visualizações0 comentário

Posts recentes

Ver tudo

Groovy - Verifica se existe a imagem na tela

KeywordUtil.markWarning("${image}"); for (x in 1..number_persist) { KeywordUtil.markWarning("Tentativa: ${x}") for (i in image){...

Groovy - Date format

import java.text.SimpleDateFormat ]def date = new Date() today = new SimpleDateFormat("dd-MM-yyyy") println today.format(date);

Groovy - Leitura de arquivos csv

File file = new File(filepath) line = file.getText("UTF-8").split("\n")[-1].split(";") println line; prinln line[0];

Comments


bottom of page