This code is very basic ... Could you help me?
create database Escuela
create table Maestros
(
usuario int not null,
name varchar(50),
country char(2),
birthdate date
);
insert into Maestros values (1, 'Emmanuel', 'MX', 1996-07-23);
I get a syntax error
Msg 206, Level 16, State 2, Line 1 Operand type clash: int is incompatible with date