+ 2
How to make Upper function?
22 Respostas
+ 8
Jamilu Abubakar Sadiq ,
I hope this link helps you
https://code.sololearn.com/cxH4sC7i6aMZ
+ 5
SELECT
UPPER(CustomerName) AS UppercaseCustomerName,
LOWER(CustomerName) AS LowercaseCustomerName
FROM Customers;
+ 3
SELECT answers
FROM questions
WHERE username LIKE '%SoloProg%';
-- Good Luck :)
+ 2
There is an Upper function in most SQL systems.
+ 2
in MySQL
SELECT UCASE(CustomerName) AS Name
FROM Customers;
+ 2
-- try this:
select SQRT(POWER(side_a, 2) + POWER(side_b, 2)) as side_c
from triangle
+ 2
Use UPPER (column_name)
+ 1
insert into users (username)
values ('SoloProg2');
insert into questions (username, answer)
values ('SoloProg2', 'Good Luck :P');
+ 1
Jamilu Abubakar Sadiq ,
yes
+ 1
Thanks sir
+ 1
SELECT UPPER(column_name) from table_name;
Select upper (column_name) as coustomer_name from table_name;
0
Like which system
0
MySQL, Microsoft SQL Server, PostgreSQL, etc.
0
Write a query to output the firstname and the lastname columns into one column named uppercasename separated by a space and converted to uppercase.
0
This is the project which I want to make it upper
0
SELECT answer
FROM question
WHERE username = 'SoloProg '
š
0
In normal sql?
0
And what's about this question?
Write a query to output a column named side_c where the hypotenuses of the corresponding rectangular triangles are shown.
0
The square of the hypotenuse is equal to the sum of the squares of the other two sides.
Use the * operator for multiplication.
0
You are given the following table named triangle with the values of 2 of the edges of rectangular triangles: