Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Trabalho
--criando a tabela create table Cliente ( CodigoCliente int primary key, NomeCliente nvarchar(50), ) insert into Cliente(CodigoCliente, NomeCliente) values (1, 'laura') insert into Cliente(CodigoCliente, NomeCliente) values (2, 'mariana') insert into Cliente(CodigoCliente, NomeCliente) values (3, 'paulo') --len mostra a quantidade de caracteres select NomeCliente, len(NomeCliente) Tamanho from Cliente select max(len(NomeCliente)) QuantidadeMaiorNome from Cliente select min(len(NomeCliente)) QuantidadeMenorNome from Cliente --upper transforma caracteres em maiusculo select upper(NomeCliente) NomeCliente from Cliente --lower transforma os caracteres em minuscula select lower(NomeCliente) NomeCliente from Cliente
run
|
edit
|
history
|
help
0
Sort A List of Ages of Students (Solution: Stack / O(N^3) Complexity)
sdfghyjuyhtgrfedc
SevenSevenSeven
Simple Regex Example
C# virtual dispose
Dotnetq5
Bubble Sort
Project Euler Problem 6
TestWall
1.3 Basics: interfaces