79269748

Date: 2024-12-10 20:49:20
Score: 1
Natty:
Report link

This is SQL query to add a table to your DB which can store a photo.

create table if not exists testphoto(
id bigint auto_increment primary key,
file_name varchar(255),
content_type varchar(255),
data binary
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MisterCoder