Users

 avatar
unknown
plain_text
a year ago
332 B
35
Indexable
USE [swp_pj_05f]
GO

INSERT INTO [dbo].[Users] ([username], [password], [email], [phone_number], [address], [point], [role], [user_status])
VALUES 
    ('user1', 'password1', '[email protected]', '1234567890', '123 Main St', 0, 1, 1),
    ('user2', 'password2', '[email protected]', '0987654321', '456 Elm St', 0, 1, 1);
GO
Editor is loading...
Leave a Comment