What's new

Welcome to xCrud Community - Data Management and extended PHP CRUD

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Uppercase convert

Phd2000

New member
Joined
Apr 19, 2022
Messages
2
Reaction score
0
Points
1
Location
France
Hello everyone

Can someone please help me, I absolutely need to have some data in the database in uppercase. Is there a way to convert or force characters when typing on the keyboard. Xcrud is new for me and I am newbee in coding.

Sorry for my poor English

Thanks
 

DaDo

Administrator
Staff member
Joined
Dec 1, 2021
Messages
108
Reaction score
23
Points
18
SQL:
UPDATE `YOURTABLENAME` SET `COLUMNS_NAME`=LOWER(`COLUMNS_NAME`);
 
Top Bottom